diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-06-23 08:31:48 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-06-23 08:31:48 +0000 |
commit | 71abf9be23cdcb6cc1c356eaaa2b6026396fe98a (patch) | |
tree | 3791e8b209c588848ec4a0b7b80d8d0c831a379d /testing/wpa_actiond | |
parent | 6f61db13e5d97af2c90fa582dbbe0d6bb0c70aab (diff) | |
download | aports-71abf9be23cdcb6cc1c356eaaa2b6026396fe98a.tar.bz2 aports-71abf9be23cdcb6cc1c356eaaa2b6026396fe98a.tar.xz |
testing/wpa_actiond: fix package installation
Diffstat (limited to 'testing/wpa_actiond')
-rw-r--r-- | testing/wpa_actiond/APKBUILD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testing/wpa_actiond/APKBUILD b/testing/wpa_actiond/APKBUILD index 5a4cf45d0e..c92874f74e 100644 --- a/testing/wpa_actiond/APKBUILD +++ b/testing/wpa_actiond/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Marian <marian.buschsieweke@ovgu.de> pkgname=wpa_actiond pkgver=1.4 -pkgrel=1 +pkgrel=2 pkgdesc="Daemon that connects to wpa_supplicant and handles connect and disconnect events" url="https://git.archlinux.org/wpa_actiond.git/" arch="all" @@ -15,7 +15,7 @@ source="https://git.archlinux.org/${pkgname}.git/snapshot/${pkgname}-${pkgver}.t wpa_actiond.confd wpa_actiond.initd" options="!check" -builddir="$srcdir/$pkgname-$pkgver" +builddir="$srcdir"/$pkgname-$pkgver build() { cd "$builddir" @@ -24,9 +24,9 @@ build() { package() { cd "$builddir" - install -Dm755 -t "${pkgdir}/usr/sbin/" wpa_actiond - install -Dm755 ../wpa_actiond.initd "${pkgdir}/etc/init.d/wpa_actiond" - install -Dm755 ../wpa_actiond.confd "${pkgdir}/etc/conf.d/wpa_actiond" + install -Dm755 wpa_actiond "$pkgdir"/usr/sbin/wpa_actiond + install -Dm755 ../wpa_actiond.initd "$pkgdir"/etc/init.d/wpa_actiond + install -Dm755 ../wpa_actiond.confd "$pkgdir"/etc/conf.d/wpa_actiond } sha512sums="1ac38cdb6ce534cb14cfada4def31c17feff61408868ffd63cd1a516cdbade992719b575a96f5ab4046a1d451bfae526ccdf8eb68cfc7bdc022df3506ae07296 wpa_actiond-1.4.tar.xz |