summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamLukeYes2021-04-28 00:14:39 +0800
committerSamLukeYes2021-04-28 00:14:39 +0800
commit508fb990652032f50970e686992c331c15af8d68 (patch)
tree8dd7ad3074c9ad952c1f3ce7d73442d32d09afca
parent50c035108fb64524dc03c998fbd4aadd9c7e26e4 (diff)
downloadaur-508fb990652032f50970e686992c331c15af8d68.tar.gz
make msidiff and msidump executable
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c364f25b6b46..16f9c33ce989 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = msitools
pkgdesc = Set of programs to inspect and build Windows Installer (.MSI) files
pkgver = 0.101
- pkgrel = 2
+ pkgrel = 3
url = https://wiki.gnome.org/msitools
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 834ffee404cf..8d208262319a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=msitools
pkgver=0.101
-pkgrel=2
+pkgrel=3
pkgdesc="Set of programs to inspect and build Windows Installer (.MSI) files"
arch=('i686' 'x86_64')
url="https://wiki.gnome.org/msitools"
@@ -28,5 +28,9 @@ package() {
cd "$srcdir/$pkgname-$pkgver"
DESTDIR="$pkgdir" meson install -C build
install -Dm644 copyright "$pkgdir/usr/share/licenses/$pkgname/copyright"
+
+ # Workaround an upstream bug that will be fixed in the next release
+ chmod +x "$pkgdir/usr/bin/msidiff"
+ chmod +x "$pkgdir/usr/bin/msidump"
}