diff options
author | root <root@rshg047.dnsready.net> | 2011-07-09 23:10:17 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-07-09 23:10:17 +0000 |
commit | d1e588afc2779754c0abd1122ecf4f8e3c863d7a (patch) | |
tree | b9373ca2187d6796b8045bae62418621abf01ff4 /testing/gnutls | |
parent | d006db78a1ce530e9df8a65f87bf39e8d6cc88e5 (diff) |
Sat Jul 9 23:10:17 UTC 2011
Diffstat (limited to 'testing/gnutls')
-rw-r--r-- | testing/gnutls/PKGBUILD | 39 | ||||
-rw-r--r-- | testing/gnutls/gnutls.install | 20 |
2 files changed, 59 insertions, 0 deletions
diff --git a/testing/gnutls/PKGBUILD b/testing/gnutls/PKGBUILD new file mode 100644 index 000000000..6f4fe2870 --- /dev/null +++ b/testing/gnutls/PKGBUILD @@ -0,0 +1,39 @@ +# $Id: PKGBUILD 130900 2011-07-08 17:01:10Z andyrtr $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=gnutls +pkgver=2.12.7 +pkgrel=2 +pkgdesc="A library which provides a secure layer over a reliable transport layer" +arch=('i686' 'x86_64') +license=('GPL3' 'LGPL') +url="http://www.gnu.org/software/gnutls/" +install=gnutls.install +options=('!libtool' '!zipman') +depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle') +source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.bz2) +md5sums=(4b48aa3119f549d30d550bf4162c721b'') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr \ + --with-zlib \ + --disable-static \ + --disable-guile + make +} + +check() { + cd "${srcdir}/${pkgname}-${pkgver}" + #make check # passes all || /bin/true + make check # || /bin/true # see https://lists.gnu.org/archive/html/gnutls-devel/2011-06/msg00007.html +} + +package() { + cd "${srcdir}/${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 {} \; + find "$pkgdir/usr/share/man" -exec gzip -9 {} \; +} diff --git a/testing/gnutls/gnutls.install b/testing/gnutls/gnutls.install new file mode 100644 index 000000000..9ce7c6edc --- /dev/null +++ b/testing/gnutls/gnutls.install @@ -0,0 +1,20 @@ +infodir=usr/share/info +filelist=(gnutls.info-1.gz gnutls.info-2.gz gnutls.info-3.gz gnutls.info.gz) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do + install-info $infodir/$file $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do + install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +} |