summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-02-21 00:03:57 -0800
committerroot <root@rshg054.dnsready.net>2013-02-21 00:03:57 -0800
commit111b18e76114f1a46a23a979a7872e7fda412601 (patch)
treec2dc239a6e89e8b41571373abc2e5ad7318075da /core
parent1bd47d3e04c409582486ea3ec915d3b7899f6841 (diff)
Thu Feb 21 00:03:56 PST 2013
Diffstat (limited to 'core')
-rw-r--r--core/texinfo/PKGBUILD29
1 files changed, 14 insertions, 15 deletions
diff --git a/core/texinfo/PKGBUILD b/core/texinfo/PKGBUILD
index 0dc4ef81d..e4e64853d 100644
--- a/core/texinfo/PKGBUILD
+++ b/core/texinfo/PKGBUILD
@@ -1,34 +1,33 @@
-# $Id: PKGBUILD 176250 2013-01-28 00:29:28Z allan $
+# $Id: PKGBUILD 178319 2013-02-20 06:23:03Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=texinfo
-pkgver=4.13a
-pkgrel=8
+pkgver=5.0
+pkgrel=1
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' 'base-devel')
-depends=('ncurses' 'findutils' 'gzip' 'sh')
+depends=('ncurses' 'findutils' 'gzip' 'perl' 'sh')
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')
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('ef2fad34c71ddc95b20c7d6a08c0d7a6'
+ 'a1e46e27d14467b05abe652bfc30684e')
build() {
- cd ${srcdir}/${pkgname}-4.13
- patch -Np1 -i $srcdir/texinfo-4.13a-data_types.patch
+ cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make
}
+check() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make check
+}
+
package() {
- cd ${srcdir}/${pkgname}-4.13
+ cd ${srcdir}/${pkgname}-${pkgver}
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
}