mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-15 01:09:04 +08:00
33 lines
781 B
Bash
33 lines
781 B
Bash
# Maintainer: almack[at]chakraos[dot]org>
|
|
|
|
pkgname=gnutls
|
|
pkgver=3.2.15
|
|
pkgrel=2
|
|
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.2/${pkgname}-${pkgver}.tar.xz{,.sig})
|
|
md5sums=('ec3b06f80e312137386c5d322183ca5a'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr --with-zlib --disable-guile --disable-valgrind-tests --disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd ${pkgname}-${pkgver}
|
|
make -j1 check
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|