mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-15 00:59:03 +08:00
37 lines
841 B
Bash
37 lines
841 B
Bash
# Maintainer: almack[at]chakraos[dot]org>
|
|
|
|
pkgname=gnutls
|
|
pkgver=3.3.10
|
|
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' 'libtasn1' 'readline' 'zlib' 'libgcrypt' 'texinfo' 'nettle')
|
|
source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/${pkgname}-${pkgver}.tar.xz{,.sig})
|
|
md5sums=('c0a72b2c0553fe1c4992e30835808012'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr \
|
|
--with-zlib \
|
|
--disable-guile \
|
|
--disable-valgrind-tests \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd ${pkgname}-${pkgver}
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|