Date: Saturday, February 15, 2014 @ 12:55:49 Author: andyrtr Revision: 205976
upgpkg: gnutls 3.2.11-1 upstream update 3.2.11 Modified: gnutls/trunk/PKGBUILD ----------+ PKGBUILD | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-02-15 06:48:25 UTC (rev 205975) +++ PKGBUILD 2014-02-15 11:55:49 UTC (rev 205976) @@ -3,7 +3,7 @@ # Maintainer: Andreas Radke <andy...@archlinux.org> pkgname=gnutls -pkgver=3.2.10 +pkgver=3.2.11 pkgrel=1 pkgdesc="A library which provides a secure layer over a reliable transport layer" arch=('i686' 'x86_64') @@ -12,9 +12,8 @@ install=gnutls.install options=('!zipman') depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit') -makedepends=('valgrind' 'strace' 'datefudge') source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.2/${pkgname}-${pkgver}.tar.xz{,.sig}) -md5sums=('5b74319f1e6462a68d886d1266b282fc' +md5sums=('3fce0742dd7e273235a9d376dd895657' 'SKIP') build() { @@ -22,20 +21,19 @@ ./configure --prefix=/usr \ --with-zlib \ --disable-static \ - --disable-guile \ - --disable-valgrind-tests + --disable-guile make } check() { cd ${pkgname}-${pkgver} - make -k check || /bin/true + make check } package() { cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install - + # lots of .png files are put into infodir and are gzipped by makepkg! this may need to be fixed by using !zipman # gzip -9 all files in infodir and manpages manually find "$pkgdir/usr/share/info" -name '*.info*' -exec gzip -9 {} \;