aboutsummaryrefslogtreecommitdiffstats
path: root/community/dfc
diff options
context:
space:
mode:
authorLuca Weiss <luca@z3ntu.xyz>2020-04-12 22:19:46 +0200
committerTBK <tbk@jjtc.eu>2020-04-13 15:26:21 +0000
commit88476e645d8a365b4240e110d67c1b4ca88e66a6 (patch)
tree4dff7090d19c5f8c2ceef89988bf961f2f29909d /community/dfc
parent1a9e76bbd8780d8bda4d1dc465002011a9c52988 (diff)
downloadaports-88476e645d8a365b4240e110d67c1b4ca88e66a6.tar.bz2
aports-88476e645d8a365b4240e110d67c1b4ca88e66a6.tar.xz
community/dfc: fix incorrect sysconfdir
Previously the file /usr/etc/xdg/dfc/dfcrc would be installed which is incorrect. Fix this by explitely setting the sysconfdir.
Diffstat (limited to 'community/dfc')
-rw-r--r--community/dfc/APKBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/community/dfc/APKBUILD b/community/dfc/APKBUILD
index 071b3590b6..b2ac5792ad 100644
--- a/community/dfc/APKBUILD
+++ b/community/dfc/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=dfc
pkgver=3.1.1
-pkgrel=1
+pkgrel=2
arch="all"
url="https://projects.gw-computing.net/projects/dfc"
pkgdesc="Report file system space usage information with style"
@@ -15,7 +15,8 @@ options="!check" # No tests available
build() {
cmake \
-DCMAKE_BUILD_TYPE=None \
- -DCMAKE_INSTALL_PREFIX=/usr
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DSYSCONFDIR=/etc
make
}