summaryrefslogtreecommitdiff
path: root/testing/texinfo/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-12-13 23:14:49 +0000
committerroot <root@rshg054.dnsready.net>2011-12-13 23:14:49 +0000
commitf4dcb5cb43b68e265512a03a160bdda634818b43 (patch)
tree9000841b67cefbce37255cb4d728e80bd5a11586 /testing/texinfo/PKGBUILD
parentcb9c375209c236c16557878a1b864f91de27b88d (diff)
Tue Dec 13 23:14:49 UTC 2011
Diffstat (limited to 'testing/texinfo/PKGBUILD')
-rw-r--r--testing/texinfo/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/texinfo/PKGBUILD b/testing/texinfo/PKGBUILD
new file mode 100644
index 000000000..cc20f22b7
--- /dev/null
+++ b/testing/texinfo/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 144959 2011-12-12 08:29:38Z allan $
+# Maintainer: Allan McRae <allan@archlinux.org>
+# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
+
+pkgname=texinfo
+pkgver=4.13a
+pkgrel=7
+pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line documentation from a single source file"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/texinfo/"
+license=('GPL3')
+groups=('base')
+depends=('ncurses' 'findutils' 'gzip')
+install=texinfo.install
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig}
+ texinfo-4.13a-data_types.patch)
+md5sums=('71ba711519209b5fb583fed2b3d86fcb'
+ 'db2ca82c831684cd7cef181234017c46'
+ 'd8574782ff7def1e2dc5c291dbeaec18')
+
+build() {
+ cd ${srcdir}/${pkgname}-4.13
+ patch -Np1 -i $srcdir/texinfo-4.13a-data_types.patch
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-4.13
+ make DESTDIR=${pkgdir} install
+
+ # fix this here as it prevents make from trying to rebuild manual pages
+ sed -i 's#A-z#A-Za-z#' ${pkgdir}/usr/bin/texi2dvi
+}