diff options
Diffstat (limited to 'system/groff/APKBUILD')
-rw-r--r-- | system/groff/APKBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/system/groff/APKBUILD b/system/groff/APKBUILD new file mode 100644 index 000000000..0c7201b94 --- /dev/null +++ b/system/groff/APKBUILD @@ -0,0 +1,39 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=groff +pkgver=1.22.3 +pkgrel=2 +pkgdesc="GNU troff text-formatting system" +url="https://www.gnu.org/software/groff/groff.html" +arch="all" +license="GPL" +depends= +makedepends="perl texinfo" +subpackages="$pkgname-doc" +source="ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz" + +build () { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --without-x + # work around parallel build issue + make arch/misc && make +} + +check() { + cd "$builddir" + make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install + rm -rf "$pkgdir"/usr/lib/charset.alias + rmdir -p "$pkgdir"/usr/lib 2>/dev/null || true +} + +md5sums="cc825fa64bc7306a885f2fb2268d3ec5 groff-1.22.3.tar.gz" +sha256sums="3a48a9d6c97750bfbd535feeb5be0111db6406ddb7bb79fc680809cda6d828a5 groff-1.22.3.tar.gz" +sha512sums="c526ab203d13a9c9d110bcd3149fe50d1cd0d309437e9e2731a7ce90d890507ebc0a2331899ecf4dba2938daa756b6094cf76fd347a0ded59797c70ccfd0c95c groff-1.22.3.tar.gz" |