summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicola Murino2020-04-21 14:44:25 +0200
committerNicola Murino2020-04-21 14:44:25 +0200
commitd295877f2ae5615c18190be9e7906d3a87037545 (patch)
tree5c74d9ff717ed4fc3377aa34b4f15cabfa7df2d6
parentdad4694b6ee245369085417b2720a7ebf2b67b88 (diff)
downloadaur-openvpn-openssl-1.0.tar.gz
fix permissions for scripts in contrib
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ab8d0f4443e5..c2601288dda2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = openvpn-openssl-1.0
pkgdesc = An easy-to-use, robust and highly configurable VPN (Virtual Private Network) (build against openssl-1.0)
pkgver = 2.4.9
- pkgrel = 1
+ pkgrel = 2
url = https://openvpn.net/index.php/open-source.html
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 32f2b004d70f..aa45971da032 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=openvpn-openssl-1.0
_pkgname=openvpn
pkgver=2.4.9
-pkgrel=1
+pkgrel=2
pkgdesc='An easy-to-use, robust and highly configurable VPN (Virtual Private Network) (build against openssl-1.0)'
arch=('i686' 'x86_64')
url='https://openvpn.net/index.php/open-source.html'
@@ -73,7 +73,7 @@ package() {
# Install contrib
for FILE in $(find contrib -type f); do
- case "$(file --brief --mime-type "${FILE}")" in
+ case "$(file --brief --mime-type --no-sandbox "${FILE}")" in
"text/x-shellscript") install -D -m0755 "${FILE}" "${pkgdir}/usr/share/openvpn/${FILE}" ;;
*) install -D -m0644 "${FILE}" "${pkgdir}/usr/share/openvpn/${FILE}" ;;
esac