diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/linuxdoc-tools/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/linuxdoc-tools/PKGBUILD')
-rw-r--r-- | community/linuxdoc-tools/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/linuxdoc-tools/PKGBUILD b/community/linuxdoc-tools/PKGBUILD new file mode 100644 index 000000000..22c533374 --- /dev/null +++ b/community/linuxdoc-tools/PKGBUILD @@ -0,0 +1,23 @@ +# $Id$ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: David Ell <david at bytesizebits dot net> + +pkgname=linuxdoc-tools +pkgver=0.9.68 +pkgrel=1 +pkgdesc="Convert LinuxDoc SGML source into other formats" +arch=('i686' 'x86_64') +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') + +build() { + cd "$srcdir/$pkgname-$pkgver" + sed -i '/extern int yyleng;/d' rtf-fix/rtf2rtf.l + ./configure --prefix=/usr --mandir=/usr/share/man + make + make DESTDIR="$pkgdir/" install +} |