91 lines
3.2 KiB
Bash
91 lines
3.2 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=gnutls
|
|
pkgver=3.8.6
|
|
pkgrel=01
|
|
pkgdesc="A library which provides a secure layer over a reliable transport layer w/o zstd "
|
|
url="https://www.gnutls.org/"
|
|
options=('!zipman')
|
|
#options=('!zipman' 'debug') # comment or rm zipman option above, uncomment here to have gnutls-debug pkg produced
|
|
depends=('glibc' 'gcc-libs' 'gmp' 'libtasn1' 'zlib' 'nettle'
|
|
'libp11-kit' 'libidn2' 'libidn2.so' 'libunistring' 'brotli')
|
|
makedepends=('tpm2-tss' 'gtk-doc' 'autoconf' 'automake' 'gettext') # gtk-doc required for autoreconf when patching
|
|
checkdepends=('net-tools' 'tpm2-tools')
|
|
optdepends=('tpm2-tss: support for TPM2 wrapped keys')
|
|
backup=(etc/gnutls/config
|
|
etc/modules-load.d/gnutls.conf)
|
|
source=(https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/${pkgname}-${pkgver}.tar.xz{,.sig}
|
|
config
|
|
gnutls-ktls_disable_keyupdate_test.patch)
|
|
|
|
prepare() {
|
|
cd ${pkgname}-${pkgver}
|
|
patch -Np1 -i ../gnutls-ktls_disable_keyupdate_test.patch
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--with-idn \
|
|
--with-brotli \
|
|
--without-zstd \
|
|
--with-tpm2 \
|
|
--enable-openssl-compatibility \
|
|
--enable-ktls \
|
|
--with-default-trust-store-pkcs11="pkcs11:"
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
# prepare to load tls module required for ktls
|
|
install -dm755 "$pkgdir"/etc/modules-load.d
|
|
echo "#tls" > "$pkgdir"/etc/modules-load.d/gnutls.conf
|
|
|
|
# disable ktls by default for now
|
|
install -dm755 "$pkgdir"/etc/gnutls
|
|
install -Dm644 "${srcdir}"/config "$pkgdir"/etc/gnutls/config
|
|
|
|
# license due to notice about gmp/nettle
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
|
|
# lots of .png files are put into infodir and are gzipped by makepkg! this needs to be fixed by using !zipman
|
|
# gzip -9 all files in infodir and manpages manually
|
|
find "$pkgdir/usr/share/info" -name '*.info*' -exec gzip -n -9 {} \;
|
|
find "$pkgdir/usr/share/man" -exec gzip -n -9 {} \;
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
#license=('GPL3' 'LGPL2.1')
|
|
license=('GPL-3.0-or-later AND LGPL-2.1-or-later')
|
|
|
|
#validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871') # "Daiki Ueno <ueno@unixuser.org>"
|
|
validpgpkeys=('5D46CB0F763405A7053556F47A75A648B3F9220C') # "Zoltan Fridrich <zfridric@redhat.com>"
|
|
|
|
sha256sums=(2e1588aae53cb32d43937f1f4eca28febd9c0c7aa1734fc5dd61a7e81e0ebcdd # gnutls-3.8.6.tar.xz
|
|
0e4ce7ae73d2f595ab5eb21498c7df37ae97f920a532850f22252aa906060ba1 # gnutls-3.8.6.tar.xz.sig
|
|
22e614510fe52defe8c233ce3e5ead2205739fd967657ce3176ca121f3c562b5 # config
|
|
2a911615739cb327b6dced36b595ea10c89f40bb7274d062dab14a9ecfe89708) # gnutls-ktls_disable_keyupdate_test.patch
|
|
|
|
## faa4aba456002b9301c474e3bd729e2e97ec8a9223cedc51eb852f9896e18955 gnutls-3.8.6-01-x86_64.pkg.tar.lz
|
|
|