summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 224fddc55be4cc838b20904f3c731339f48310f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Maintainer: Darshit Shah <darnir gnu org>
# Contributor: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=gnutls-tiny-git
pkgver=3.6.0.1.r11.g2b29963b5
pkgrel=1
pkgdesc="A secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them"
arch=('x86_64')
url="https://www.gnutls.org/"
license=('GPL3' 'LGPL2.1')
depends=('gcc-libs' 'libidn2' 'libtasn1' 'libunistring' 'nettle' 'p11-kit' 'readline' 'zlib')
checkdepends=('net-tools')
optdepends=('guile: for use with Guile bindings')
makedepends=('git')
provides=('gnutls')
conflicts=('gnutls')
source=("git+https://gitlab.com/gnutls/gnutls.git")
sha256sums=('SKIP')

prepare() {
	cd "gnutls"

	make bootstrap
}

pkgver() {
  cd "gnutls"

  git describe --long --tags | sed 's/^gnutls_//;s/\([^-]*-g\)/r\1/;s/[_-]/./g'
}

build() {
  cd "gnutls"

  ./configure --prefix=/usr \
	--with-zlib \
	--disable-static \
	--enable-guile --with-guile-site-dir=no \
	--disable-tests \
	--disable-tools \
	--disable-maintainer-mode \
	--disable-libdane \
	--disable-doc \
	--with-default-trust-store-pkcs11="pkcs11:model=p11-kit-trust;manufacturer=PKCS%2311%20Kit"
  make
}

package() {
  cd "gnutls"

  make DESTDIR="$pkgdir" install

  # 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 -9 {} \;
  find "$pkgdir/usr/share/man" -exec gzip -9 {} \;
}