2021-02-04 23:17:06 +01:00
|
|
|
# Description: nghttp2-libs: HTTP/2 libraries (for eg cURL)
|
|
|
|
# URL: https://nghttp2.org
|
|
|
|
# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
|
|
|
|
|
|
|
|
rname=nghttp2
|
2021-02-12 00:01:50 +01:00
|
|
|
name=nghttp2-libs
|
2021-10-30 18:53:55 +02:00
|
|
|
version=1.46.0
|
2021-02-04 23:17:06 +01:00
|
|
|
release=1
|
2021-02-12 00:01:50 +01:00
|
|
|
source=(
|
|
|
|
https://github.com/${rname}/${rname}/releases/download/\
|
|
|
|
v${version}/${rname}-${version}.tar.xz
|
|
|
|
)
|
2021-02-04 23:17:06 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${rname}-${version}
|
|
|
|
|
|
|
|
./configure --prefix=/usr --enable-lib-only \
|
|
|
|
--without-libxml2 --without-mruby --without-neverbleed \
|
|
|
|
--without-systemd --without-jemalloc
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="${PKG}" install
|
|
|
|
|
|
|
|
rm -rf "${PKG}"/usr/share/doc "${PKG}"/usr/share/man
|
|
|
|
}
|
|
|
|
|
|
|
|
# s-sh-mode
|