We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90e6444 commit deb3dedCopy full SHA for deb3ded
.install
@@ -31,5 +31,10 @@
31
32
## arg 1: the old package version
33
post_remove() {
34
- ./install.sh uninstall;
+ local INSTALL_DIR=/usr/lib/bsp-layout;
35
+ local BINARY=/usr/local/bin/bsp-layout;
36
+
37
+ # Clean up
38
+ rm -rf $INSTALL_DIR;
39
+ rm -rf $BINARY;
40
}
PKGBUILD
@@ -14,10 +14,9 @@ provides=("$pkgname")
14
conflicts=("$pkgname")
15
install=".install"
16
source=('git+https://github.com/phenax/bsp-layout.git')
17
-noextract=()
18
-md5sums=()
+md5sums=('SKIP')
19
20
package() {
21
- cd "$pkgname-$pkgver"
22
- ./install.sh local;
+ cd "$pkgname";
+ sudo ./install.sh local;
23
0 commit comments