diff options
author | Bart Ribbers <bribbers@disroot.org> | 2020-03-11 15:37:21 +0100 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2020-03-22 09:44:21 +0000 |
commit | f88841b904f3919fde8a5c16e683c7c96aab23f0 (patch) | |
tree | dddd17e7e1452033aa0b565e16e5e7ea06dc7132 | |
parent | aed66e856e47dc7d32c17e0789468e4b289e7091 (diff) |
community/dhcpcd-ui: move conf to /etc
-rw-r--r-- | community/dhcpcd-ui/APKBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/community/dhcpcd-ui/APKBUILD b/community/dhcpcd-ui/APKBUILD index ea8a7f8c584..9bc226c007d 100644 --- a/community/dhcpcd-ui/APKBUILD +++ b/community/dhcpcd-ui/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=dhcpcd-ui pkgver=0.7.7 -pkgrel=0 +pkgrel=1 pkgdesc="A GTK+ monitor and configuration GUI for dhcpcd" url="https://roy.marples.name/projects/dhcpcd-ui" arch="all" @@ -10,12 +10,14 @@ depends="dhcpcd-dbus hicolor-icon-theme" makedepends="glib-dev gtk+-dev dbus-dev libnotify-dev bsd-compat-headers" subpackages="$pkgname-doc" source="http://roy.marples.name/downloads/dhcpcd/dhcpcd-ui-$pkgver.tar.xz" +options="!check" # No tests build() { ./configure \ --build=$CBUILD \ --host=$CHOST \ - --prefix=/usr + --prefix=/usr \ + --sysconfdir=/etc make } |