Date: Sunday, July 12, 2015 @ 18:55:50 Author: bpiotrowski Revision: 242147
upgpkg: libunistring 0.9.6-1 new upstream release Modified: libunistring/trunk/PKGBUILD ----------+ PKGBUILD | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2015-07-12 16:42:56 UTC (rev 242146) +++ PKGBUILD 2015-07-12 16:55:50 UTC (rev 242147) @@ -1,28 +1,32 @@ # $Id$ -# Maintainer: Jan de Groot <[email protected]> +# Maintainer: Bartłomiej Piotrowski <[email protected]> +# Contributor: Jan de Groot <[email protected]> # Contributor: Sergej Pupykin <[email protected]> # Contributor: Emmanuel 'guinness' Boudreault # Contributor: Patrick McCarty <pnorcks at gmail dot com> pkgname=libunistring -pkgver=0.9.5 +pkgver=0.9.6 pkgrel=1 -pkgdesc="Library for manipulating Unicode strings and C strings" -url="http://www.gnu.org/software/libunistring/" +pkgdesc='Library for manipulating Unicode strings and C strings' +url='http://www.gnu.org/software/libunistring/' arch=('i686' 'x86_64') license=('GPL') depends=('glibc') install=libunistring.install source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('1a705bcdcb83799d544137617b377cfd') +md5sums=('dfae4ff5583649ed24d8f368f1d0543b') build() { - cd ${pkgname}-${pkgver} + cd $pkgname-$pkgver ./configure --prefix=/usr make } +check() { + make -C $pkgname-$pkgver check +} + package() { - cd ${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install + make -C $pkgname-$pkgver DESTDIR="$pkgdir" install }
