mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 11:24:37 +08:00
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
36 lines
797 B
Bash
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
|
|
}
|