diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2016-08-15 22:22:57 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2016-08-15 22:22:57 +0200 |
commit | 2276d9bd7b52ecd9b1697105f2cac9f746c72ba5 (patch) | |
tree | 02ad9513de815e72bd0bfb6a61dde4e7862622d9 /testing/heirloom-doctools | |
parent | 0c2db734f3fc3332ea67d086fa72cbabfb66e9fe (diff) | |
download | aports-2276d9bd7b52ecd9b1697105f2cac9f746c72ba5.tar.bz2 aports-2276d9bd7b52ecd9b1697105f2cac9f746c72ba5.tar.xz |
testing/heirloom-doctools: fix typo
Diffstat (limited to 'testing/heirloom-doctools')
-rw-r--r-- | testing/heirloom-doctools/APKBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/testing/heirloom-doctools/APKBUILD b/testing/heirloom-doctools/APKBUILD index a3ef319f57..4a0e274127 100644 --- a/testing/heirloom-doctools/APKBUILD +++ b/testing/heirloom-doctools/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net> pkgname=heirloom-doctools pkgver=160308 -pkgrel=3 +pkgrel=4 pkgdesc="The Heirloom Documentation Tools" url="http://n-t-roff.github.io/heirloom/doctools.html" arch="all" @@ -37,16 +37,17 @@ builddir="$srcdir"/$pkgname-$pkgver build() { # Unfortunately parallel build isn't supported. make -j1 $_makeargs -C "$builddir" || return 1 - - # Don't conflict with main/mdocml. - rm -f "$pkgdir"/usr/bin/soelim \ - "$pkgdir"/usr/share/man/man1/soelim || return 1 } package() { # Unfortunately parallel install isn't supported. make -j1 ROOT="$pkgdir" $_makeargs \ -C "$builddir" install || return 1 + + # Don't conflict with main/mdocml. + rm -f "$pkgdir"/usr/bin/soelim \ + "$pkgdir"/usr/share/man/man1/soelim.1 || return 1 + } md5sums="f9759a099fca6b3021da33b94b1f37a9 heirloom-doctools-160308.tar.gz" |