summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorOpenSorcerer2021-06-04 20:58:55 +0200
committerOpenSorcerer2021-06-04 20:58:55 +0200
commit6c6780096a697a46a7cf830df6f42502a14b78d4 (patch)
treeab72fe06a1143744cd6c5db74c981b94361c81d2
parent26a6d91ff46e5474f13bca0277a3fe6ae1e21221 (diff)
downloadaur-6c6780096a697a46a7cf830df6f42502a14b78d4.tar.gz
pkgrel bump: Hotfix for relative paths in
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD8
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c374b067c199..14073548aaca 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = airvpn-suite
pkgdesc = AirVPN client software collection including Bluetit, Goldcrest and Hummingbird – stable
pkgver = 1.0.0
- pkgrel = 5
+ pkgrel = 6
url = https://gitlab.com/AirVPN/AirVPN-Suite
install = airvpn-suite.install
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index ee53ef293297..bd0b5bf0ef34 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=airvpn-suite
_pkgname=AirVPN-Suite
pkgver=1.0.0
-pkgrel=5
+pkgrel=6
_commit="fee05fd016b22d222ec85846786c1d627b03b40e"
pkgdesc="AirVPN client software collection including Bluetit, Goldcrest and Hummingbird – stable"
arch=('x86_64')
@@ -55,11 +55,11 @@ package() {
install -Dm755 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
# place configuration
- install -Dm600 -t "$pkgdir/etc/" etc/airvpn/*
+ install -Dm600 -t "$pkgdir/etc/" "$_pkgname"/etc/airvpn/*
# place D-Bus config#
- install -Dm644 -t "$pkgdir/etc/dbus-1/system.d/" etc/dbus-1/system.d/*
+ install -Dm644 -t "$pkgdir/etc/dbus-1/system.d/" "$_pkgname"/etc/dbus-1/system.d/*
# place Systemd service
- install -Dm644 systemd/system/bluetit.service "$pkgdir/etc/systemd/system/bluetit.service"
+ install -Dm644 "$_pkgname/etc/systemd/system/bluetit.service" "$pkgdir/etc/systemd/system/bluetit.service"
}