PKGBUILDs/extra/gnutls/PKGBUILD

49 lines
1.4 KiB
Bash
Raw Normal View History

2012-03-03 05:34:44 +00:00
# $Id: PKGBUILD 151785 2012-03-02 19:31:37Z andyrtr $
2011-12-16 16:11:52 +00:00
# Maintainer: Jan de Groot <jgc@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - removed makedepends on valgrind - v5 doesn't play that game
plugrel=1
pkgname=gnutls
2012-04-07 16:57:43 +00:00
pkgver=3.0.18
2012-02-25 18:31:45 +00:00
pkgrel=1
2011-12-16 16:11:52 +00:00
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
2012-02-21 13:21:51 +00:00
options=('!libtool' '!zipman')
2012-04-07 16:57:43 +00:00
depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle>=2.4' 'p11-kit>=0.12')
2012-02-21 13:21:51 +00:00
makedepends=('strace')
2012-02-25 18:31:45 +00:00
source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz{,.sig})
2012-04-07 16:57:43 +00:00
md5sums=('f46539a39857012ccc338a59beb4ac46'
'fbca6ee827d8db0cea0f9b670b2f5c6c')
2011-12-16 16:11:52 +00:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--with-zlib \
--disable-static \
--disable-guile \
2012-02-21 13:21:51 +00:00
--disable-valgrind-tests
2011-12-16 16:11:52 +00:00
make
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
2012-04-07 16:57:43 +00:00
# passes all || /bin/true
make check
2011-12-16 16:11:52 +00:00
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
2012-04-07 16:57:43 +00:00
2011-12-16 16:11:52 +00:00
# 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 {} \;
}