Date: Tuesday, November 11, 2014 @ 13:06:45 Author: bpiotrowski Revision: 226049
upgpkg: texinfo 5.2-3 free rebuild Modified: texinfo/trunk/PKGBUILD ----------+ PKGBUILD | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-11-11 11:49:43 UTC (rev 226048) +++ PKGBUILD 2014-11-11 12:06:45 UTC (rev 226049) @@ -1,18 +1,19 @@ # $Id$ -# Maintainer: Allan McRae <[email protected]> +# Maintainer: Bartłomiej Piotrowski <[email protected]> +# Contributor: Allan McRae <[email protected]> # Contributor: Tom Newsom <[email protected]> pkgname=texinfo pkgver=5.2 -pkgrel=2 -pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line documentation from a single source file" +pkgrel=3 +pkgdesc='GNU documentation system for on-line information and printed output' arch=('i686' 'x86_64') -url="http://www.gnu.org/software/texinfo/" +url='http://www.gnu.org/software/texinfo/' license=('GPL3') groups=('base' 'base-devel') depends=('ncurses' 'findutils' 'gzip' 'perl' 'sh') install=texinfo.install -source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig} +source=(ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig} texinfo-5.2-C-n-fix.patch) md5sums=('cb489df8a7ee9d10a236197aefdb32c5' 'SKIP' @@ -19,22 +20,20 @@ '89724bac1ecbd1a57b1ea81e87f96f44') prepare() { - cd ${srcdir}/${pkgname}-${pkgver} - patch -p0 -i ${srcdir}/texinfo-5.2-C-n-fix.patch + cd $pkgname-$pkgver + patch -p0 -i ../texinfo-5.2-C-n-fix.patch } build() { - cd ${srcdir}/${pkgname}-${pkgver} + cd $pkgname-$pkgver ./configure --prefix=/usr make } check() { - cd ${srcdir}/${pkgname}-${pkgver} - make check + make -C $pkgname-$pkgver check } package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install + make -C $pkgname-$pkgver DESTDIR="$pkgdir" install }
