aboutsummaryrefslogtreecommitdiffstats
path: root/testing/nghttp2/APKBUILD
blob: ea84dd5fe798a4731c234883a25bf167089514da (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
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer:
pkgname=nghttp2
pkgver=1.7.1
pkgrel=0
pkgdesc="Experimental HTTP/2 client, server and proxy"
url="https://nghttp2.org/"
arch="all"
license="MIT"
depends=""
depends_dev=""
makedepends="$depends_dev python-dev libev-dev openssl-dev zlib-dev"
install=""
subpackages="$pkgname-dev $pkgname-doc $pkgname-libs"
source="https://github.com/tatsuhiro-t/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz"

_builddir="$srcdir"/nghttp2-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--localstatedir=/var \
		--disable-ptyhon-bindings \
		--disable-static \
		--without-libxml2 \
		--without-spdylay \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
}

md5sums="0c25a963e4d1023da7f3b1a325d57737  nghttp2-1.7.1.tar.xz"
sha256sums="f1286fdd73d45dce8aac0f45a5923c9b28037c81863a149cc236e70dd741a616  nghttp2-1.7.1.tar.xz"
sha512sums="9d66405c588ec41d3bac05e016f870269a92eb37e212e38facbed8e1956b0922e251b6156ee811bb665e696d56b373fa03bfa1837516c69a0d88e51e1805fc1c  nghttp2-1.7.1.tar.xz"