blob: 28c0ba8666bf97a044fdab40dd73eada57efd256 (
plain)
1 # Description: nghttp2-libs: HTTP/2 libraries (for eg cURL)
2 # URL: https://nghttp2.org
3 # Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
4
5 rname=nghttp2
6 name=nghttp2-libs
7 version=1.45.0
8 release=1
9 source=(
10 https://github.com/${rname}/${rname}/releases/download/\
11 v${version}/${rname}-${version}.tar.xz
12 )
13
14 build() {
15 cd ${rname}-${version}
16
17 ./configure --prefix=/usr --enable-lib-only \
18 --without-libxml2 --without-mruby --without-neverbleed \
19 --without-systemd --without-jemalloc
20
21 make
22 make DESTDIR="${PKG}" install
23
24 rm -rf "${PKG}"/usr/share/doc "${PKG}"/usr/share/man
25 }
26
27 # s-sh-mode
|