diff options
author | Humm <hummsmith42@gmail.com> | 2021-12-20 18:56:40 +0100 |
---|---|---|
committer | dispatch <dispatch@listserv.local> | 2021-12-20 18:04:10 +0000 |
commit | 55b1ac056448112e65b4d3d78a156bb68dd1e6d8 (patch) | |
tree | 9ddedf1ea8e78868c2109a9cdfcebc1423491f1a | |
parent | 67fdacb62410fdce657537390349dcd1989f596b (diff) | |
download | aports-patches/3823.tar.gz aports-patches/3823.tar.bz2 aports-patches/3823.tar.xz |
community/sysstat: disable compression of man pagespatches/3823
Compressing man pages in the build (with xz) steals responsibility from
the package build system (and mandoc doesn't support xz decompression).
-rw-r--r-- | community/sysstat/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/sysstat/APKBUILD b/community/sysstat/APKBUILD index 5dec58c363..542a7ed4a7 100644 --- a/community/sysstat/APKBUILD +++ b/community/sysstat/APKBUILD @@ -8,7 +8,7 @@ pkgdesc="Performance monitoring tools" url="http://pagesperso-orange.fr/sebastien.godard/" arch="all" license="GPL-2.0-or-later" -makedepends="linux-headers xz" +makedepends="linux-headers" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/sysstat/sysstat/archive/v$pkgver.tar.gz" @@ -20,6 +20,7 @@ build() { --sysconfdir=/etc \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ + --disable-compress-manpg \ --disable-nls make } |