summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Burgos2023-12-04 08:15:37 -0600
committerSantiago Burgos2023-12-04 08:15:37 -0600
commit00e49b9b14e19d2c8c919591d3139d88ccae580e (patch)
treeb20d7c7bbc3905821b5a32427f534cbab469bbf8
parent8d5651c50c97f72be5d2c66860da2d96421e5864 (diff)
downloadaur-00e49b9b14e19d2c8c919591d3139d88ccae580e.tar.gz
fixed issue with binary not being executable
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5637aa7864ff..019c4eae95aa 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = mintstick
pkgdesc = A graphical tool that allows you to format USB sticks and create bootable USB sticks.
pkgver = 1.5.7
- pkgrel = 1
+ pkgrel = 2
url = http://packages.linuxmint.com/pool/main/m/mintstick
arch = any
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index 2f21ece386b6..d50dea9413cc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=mintstick
pkgver=1.5.7
-pkgrel=1
+pkgrel=2
pkgdesc="A graphical tool that allows you to format USB sticks and create bootable USB sticks."
arch=('any')
url="http://packages.linuxmint.com/pool/main/m/${pkgname}"
@@ -39,7 +39,8 @@ sha256sums=('843a9a636d44f2f3a66f677b4e36387920df358114b4ceb659a59df1fd539c0c')
package() {
cd "$pkgname"
- install -Dm644 lib/* -t "$pkgdir/usr/lib/$pkgname/"
+ #install -Dm644 lib/* -t "$pkgdir/usr/lib/$pkgname/"
+ install -Dm755 lib/* -t "$pkgdir/usr/lib/$pkgname/"
install -Dm644 "share/$pkgname"/* -t "$pkgdir/usr/share/$pkgname/"
install -Dm644 share/applications/* -t "$pkgdir/usr/share/applications/"
install -Dm644 share/polkit/* -t "$pkgdir/usr/share/polkit-1/actions/"