-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild-linux.sh
37 lines (30 loc) · 1.06 KB
/
build-linux.sh
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
#!/bin/sh
if [ $# -eq 0 ]
then
echo "Call the script with the desired fpm output type [deb, pacman, ...]"
exit
fi
rm -rf build/linux
pyinstaller gotify-tray.spec
mkdir -p build/linux/opt
mkdir -p build/linux/usr/share/applications
mkdir -p build/linux/usr/share/icons
cp -r dist/gotify-tray build/linux/opt/gotify-tray
cp gotify_tray/gui/images/logo.ico build/linux/usr/share/icons/gotify-tray.ico
cp gotifytray.desktop build/linux/usr/share/applications
find build/linux/opt/gotify-tray -type f -exec chmod 644 -- {} +
find build/linux/opt/gotify-tray -type d -exec chmod 755 -- {} +
find build/linux/usr/share -type f -exec chmod 644 -- {} +
chmod +x build/linux/opt/gotify-tray/gotify-tray
fpm --verbose \
-C build/linux \
-s dir \
-t $1 \
-p dist/ \
-n gotify-tray \
--url https://github.com/seird/gotify-tray \
-m [email protected] \
--description "Gotify Tray. A tray notification application for receiving messages from a Gotify server." \
--category internet \
--version "$(cat version.txt)" \
--license GPLv3