diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
commit | 65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 (patch) | |
tree | fbfdff322b28d9a3c37e6e31c94caf1d8e48dac1 /community/linuxdoc-tools/PKGBUILD | |
parent | d53c44f055929b18d7d1b25f8367ee5836c435fc (diff) |
Fri Dec 27 23:54:04 UTC 2013
Diffstat (limited to 'community/linuxdoc-tools/PKGBUILD')
-rw-r--r-- | community/linuxdoc-tools/PKGBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/community/linuxdoc-tools/PKGBUILD b/community/linuxdoc-tools/PKGBUILD index 22c533374..0803976eb 100644 --- a/community/linuxdoc-tools/PKGBUILD +++ b/community/linuxdoc-tools/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: David Ell <david at bytesizebits dot net> pkgname=linuxdoc-tools -pkgver=0.9.68 +pkgver=0.9.69 pkgrel=1 pkgdesc="Convert LinuxDoc SGML source into other formats" arch=('i686' 'x86_64') @@ -11,13 +11,17 @@ url="http://packages.debian.org/sid/linuxdoc-tools" license=('GPL') depends=('jade') optdepends=('groff' 'texlive-bin') -source=(http://ftp.de.debian.org/debian/pool/main/l/${pkgname}/${pkgname}_${pkgver}.tar.gz) -md5sums=('68434f800ab3b68f44da790cc61cf766') +source=(http://ftp.de.debian.org/debian/pool/main/l/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz) +md5sums=('1d13d500918a7a145b0edc2f16f61dd1') build() { cd "$srcdir/$pkgname-$pkgver" sed -i '/extern int yyleng;/d' rtf-fix/rtf2rtf.l ./configure --prefix=/usr --mandir=/usr/share/man make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir/" install } |