diff options
author | Leo <thinkabit.ukim@gmail.com> | 2021-02-08 05:06:04 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2021-02-09 12:11:33 +0000 |
commit | 1f719f7b1acca99ff8bbd28994c39a2f4eb3695f (patch) | |
tree | 09b5d375c6e4f7c7e833f2e601f44514c5fd5003 | |
parent | ffe0bf38e378e80607b6f1a31bcf2bbdfcab7f83 (diff) | |
download | aports-1f719f7b1acca99ff8bbd28994c39a2f4eb3695f.tar.gz aports-1f719f7b1acca99ff8bbd28994c39a2f4eb3695f.tar.bz2 aports-1f719f7b1acca99ff8bbd28994c39a2f4eb3695f.tar.xz |
testing/system-config-printer: fix location of dbus conf
-rw-r--r-- | testing/system-config-printer/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testing/system-config-printer/APKBUILD b/testing/system-config-printer/APKBUILD index 8a5909879c..ad9180fda2 100644 --- a/testing/system-config-printer/APKBUILD +++ b/testing/system-config-printer/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Bart Ribbers <bribbers@disroot.org> pkgname=system-config-printer pkgver=1.5.15 -pkgrel=0 +pkgrel=1 pkgdesc="Graphical user interface for CUPS administration" url="https://github.com/OpenPrinting/system-config-printer" arch="noarch" @@ -26,6 +26,9 @@ source="https://github.com/OpenPrinting/system-config-printer/archive/v$pkgver/s prepare() { default_prepare + sed -e 's|$(sysconfdir)/dbus-1|$(datadir)/dbus-1|' \ + -i Makefile.am + ./bootstrap } |