File tree Expand file tree Collapse file tree
biglinux-webapps/usr/share/icons/hicolor/scalable/apps Expand file tree Collapse file tree File renamed without changes.
Original file line number Diff line number Diff line change @@ -10,7 +10,9 @@ pkgdesc="Installs and removes BigLinux WebApps"
1010depends=(' bigbashview' ' python-bs4' ' python-requests' ' python-pillow' ' yad' )
1111source=(" git+https://github.com/biglinux/biglinux-webapps.git" )
1212md5sums=(SKIP)
13-
13+ if [ -e " ${pkgname} .install" ]; then
14+ install=${pkgname} .install
15+ fi
1416
1517package () {
1618 # Verify default folder
Original file line number Diff line number Diff line change 1+ ## arg 1: the new package version
2+ #pre_install() {
3+ # do something here
4+ #}
5+
6+ ## arg 1: the new package version
7+ post_install() {
8+ systemctl --global enable biglinux-webapps
9+ }
10+
11+ ## arg 2: the old package version
12+ #pre_upgrade() {
13+ # do something here
14+ #}
15+
16+ ## arg 2: the old package version
17+ post_upgrade() {
18+ post_install
19+ }
20+
21+ ## arg 1: the old package version
22+ pre_remove() {
23+ systemctl --global disable biglinux-webapps
24+ }
25+
26+ ## arg 1: the old package version
27+ #post_remove() {
28+ # do something here
29+ #}
30+
You can’t perform that action at this time.
0 commit comments