-
Notifications
You must be signed in to change notification settings - Fork 0
/
rambox-community.py
73 lines (60 loc) · 2.46 KB
/
rambox-community.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Name="rambox-community"
Version="0.7.9"
Time="short"
Maintainer="Can202"
Contact="[email protected]"
Arch="both"
License="https://raw.githubusercontent.com/ramboxapp/community-edition/master/LICENSE"
idurDepends= ["idur-pkg", "idur-exec"]
Conflict= ["rambox-community"]
Description="""
Free and Open Source messaging and emailing app that combines common web applications into one.
"""
Install64="""
mkdir -p /opt/idur/share/program/rambox-community
cd /opt/idur/share/program/rambox-community
idur-pkg download https://github.com/ramboxapp/community-edition/releases/download/0.7.9/Rambox-0.7.9-linux-x86_64.AppImage
idur-pkg exec Rambox-0.7.9-linux-x86_64.AppImage
echo "#!/usr/bin/bash
cd /opt/idur/share/program/rambox-community/
./Rambox-0.7.9-linux-x86_64.AppImage
" > /opt/idur/share/program/rambox-community/rambox
idur-pkg exec /opt/idur/share/program/rambox-community/rambox
ln /opt/idur/share/program/rambox-community/rambox /opt/idur/bin/rambox
idur-pkg download https://raw.githubusercontent.com/ramboxapp/community-edition/master/resources/logo/256x256.png
mv 256x256.png /opt/idur/share/icons/rambox.png
echo "[Desktop Entry]
Name=Rambox
Exec=idur-exec rambox
Icon=/opt/idur/share/icons/rambox.png
Categories=Network
Type=Application" > /usr/share/applications/rambox.desktop
idur-pkg exec /usr/share/applications/rambox.desktop
"""
Install32="""
mkdir -p /opt/idur/share/program/rambox-community
cd /opt/idur/share/program/rambox-community
idur-pkg download https://github.com/ramboxapp/community-edition/releases/download/0.7.9/Rambox-0.7.9-linux-i386.AppImage
idur-pkg exec Rambox-0.7.9-linux-i386.AppImage
echo "#!/usr/bin/bash
cd /opt/idur/share/program/rambox-community/
./Rambox-0.7.9-linux-i386.AppImage
" > /opt/idur/share/program/rambox-community/rambox
idur-pkg exec /opt/idur/share/program/rambox-community/rambox
ln /opt/idur/share/program/rambox-community/rambox /opt/idur/bin/rambox
idur-pkg download https://raw.githubusercontent.com/ramboxapp/community-edition/master/resources/logo/256x256.png
mv 256x256.png /opt/idur/share/icons/rambox.png
echo "[Desktop Entry]
Name=Rambox
Exec=idur-exec rambox
Icon=/opt/idur/share/icons/rambox.png
Categories=Network
Type=Application" > /usr/share/applications/rambox.desktop
idur-pkg exec /usr/share/applications/rambox.desktop
"""
Remove="""
idur-pkg rm /opt/idur/share/program/rambox-community/
idur-pkg rm /opt/idur/bin/rambox
idur-pkg rm /opt/idur/share/icons/rambox.png
idur-pkg rm /usr/share/applications/rambox.desktop
"""