diff options
author | Bart Ribbers <bribbers@disroot.org> | 2020-03-11 15:27:33 +0100 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2020-03-22 09:44:20 +0000 |
commit | c0804b960e9cd5a08d2912b8028af7916645aeff (patch) | |
tree | 493bb6b33e3fe1b4a0c9fc5601bc0b1fc351944d /community/i3status | |
parent | 9a060b89601dd60160f53ef6bf2db34cbf4e301a (diff) | |
download | aports-c0804b960e9cd5a08d2912b8028af7916645aeff.tar.bz2 aports-c0804b960e9cd5a08d2912b8028af7916645aeff.tar.xz |
community/i3status: move conf to /etc
Diffstat (limited to 'community/i3status')
-rw-r--r-- | community/i3status/APKBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/community/i3status/APKBUILD b/community/i3status/APKBUILD index ad68ce3581..459f9ef8e2 100644 --- a/community/i3status/APKBUILD +++ b/community/i3status/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Martijn Braam <martijn@brixit.nl> pkgname=i3status pkgver=2.13 -pkgrel=2 +pkgrel=3 pkgdesc="Generates status bar for dzen2, xmobar or similar" url="https://i3.zekjur.net/i3status" arch="all" @@ -17,7 +17,9 @@ source="https://i3wm.org/i3status/i3status-$pkgver.tar.bz2 build() { autoreconf -vif mkdir -p build && cd build - ../configure --prefix=/usr \ + ../configure \ + --prefix=/usr \ + --sysconfdir=/etc \ --disable-pulseaudio make } |