39 lines
1.3 KiB
Bash
39 lines
1.3 KiB
Bash
# Template file for 'gnutls'
|
|
pkgname=gnutls
|
|
version=3.6.12
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--with-zlib --disable-guile --disable-static
|
|
--disable-valgrind-tests --disable-rpath
|
|
--with-default-trust-store-file=/etc/ssl/certs/ca-certificates.crt
|
|
--with-trousers-lib=${XBPS_CROSS_BASE}/usr/lib"
|
|
hostmakedepends="which gettext-devel pkg-config libtool"
|
|
# add autogen when #6550 is solved
|
|
makedepends="zlib-devel lzo-devel readline-devel libgpg-error-devel
|
|
libtasn1-devel libgcrypt-devel p11-kit-devel nettle-devel libidn2-devel
|
|
libunistring-devel unbound-devel trousers-devel"
|
|
short_desc="GNU Transport Layer Security library"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-3.0-only, LGPL-2.1-or-later"
|
|
homepage="https://gnutls.org"
|
|
distfiles="https://www.gnupg.org/ftp/gcrypt/gnutls/v${version%.*}/gnutls-${version}.tar.xz"
|
|
checksum=bfacf16e342949ffd977a9232556092c47164bd26e166736cf3459a870506c4b
|
|
|
|
gnutls-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/man/man3
|
|
vmove usr/share/info
|
|
}
|
|
}
|
|
gnutls-tools_package() {
|
|
short_desc+=" - bundled tools"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/share/man/man1
|
|
}
|
|
}
|