core/gnutls/PKGBUILD
Samir Benmendil e4a26edd15 gpg: update + rebuild/update pkgs depending on it
crda: update to 3.13
gnutls: update to 3.3.11
cryptsetup: update to 1.6.6
libgcrypt: update to 1.6.2
libgpg-error: update to 1.17
libxslt: rebuild
systemd: rebuild
vpnc: fixed + rebuilt
2014-12-12 06:03:50 +00:00

36 lines
797 B
Bash

# Maintainer: almack[at]chakraos[dot]org>
pkgname=gnutls
pkgver=3.3.11
pkgrel=1
pkgdesc="A library which provides a secure layer over a reliable transport layer"
arch=('x86_64')
license=('GPL3' 'LGPL2.1')
url="http://www.gnu.org/software/gnutls/"
install=gnutls.install
depends=('gcc-libs' 'libidn' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit')
source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/${pkgname}-${pkgver}.tar.xz{,.sig})
md5sums=('b657e3010c10cae2244e7ce79ee3d446'
'SKIP')
build() {
cd ${pkgname}-${pkgver}
./configure --prefix=/usr \
--with-zlib \
--disable-guile \
--disable-static
make
}
check() {
cd ${pkgname}-${pkgver}
make check
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}