blob: 65b9af0e19d89616e70864869b6f28acb8d87be0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
DEPS=(glibc)
PKG_VER=1.46.0
SOURCE=https://github.com/nghttp2/nghttp2/releases/download/v$PKG_VER/nghttp2-$PKG_VER.tar.xz
DESC="Framing layer of HTTP implemented as a C library"
build () {
./configure --prefix=/usr \
--disable-static \
--enable-lib-only \
--docdir=/usr/share/doc/nghttp2-$PKG_VER &&
make
make DESTDIR=$PKG_DEST install
}
|