void-packages/srcpkgs/gnutls/template
cinerea0 5b19696d85 gnutls: update to 3.7.3.
The 3.7.x branch is currently documented as "next", while 3.6.x is
"stable". However, all distros, including Debian stable, use the 3.7.x
branch; and other libraries and applications already require new
functionality provided only in the 3.7 branch.

Closes: #34742 [via git-merge-pr]
2022-01-20 02:35:57 -03:00

48 lines
1.5 KiB
Bash

# Template file for 'gnutls'
pkgname=gnutls
version=3.7.3
revision=1
build_style=gnu-configure
configure_args="--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="gettext libtool pkg-config which"
# for autoreconf
#hostmakedepends+=" gettext-devel-tools automake"
# dependencies listed in pkg-config files
_develdepends="unbound-devel trousers-devel libunistring-devel nettle-devel
libtasn1-devel libidn2-devel p11-kit-devel"
makedepends="lzo-devel readline-devel libgpg-error-devel
libgcrypt-devel ${_develdepends}"
checkdepends="iproute2"
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=fc59c43bc31ab20a6977ff083029277a31935b8355ce387b634fa433f8f6c49a
pre_check() {
# same as $PASS in tests/cert-tests/certtool.sh
export GNUTLS_PIN=1234
}
gnutls-devel_package() {
depends="${_develdepends} ${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
}
}