diff options
author | Cem Keylan <cem@ckyln.com> | 2022-09-26 19:56:53 +0200 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2022-09-26 19:56:53 +0200 |
commit | 5611af0eefa6cd13aeb52f10b26b075add7fe0a8 (patch) | |
tree | 6bde97d620d157c153bd4e0e476af3abf502b986 /extra/libnghttp2/build | |
parent | 99b60befa9ba1b4ceec557e3bc05369019d4d71b (diff) | |
download | repository-5611af0eefa6cd13aeb52f10b26b075add7fe0a8.tar.gz |
libnghttp2: move to extra
Diffstat (limited to 'extra/libnghttp2/build')
-rwxr-xr-x | extra/libnghttp2/build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/extra/libnghttp2/build b/extra/libnghttp2/build new file mode 100755 index 00000000..dc08efc4 --- /dev/null +++ b/extra/libnghttp2/build @@ -0,0 +1,12 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --enable-lib-only + +make +make DESTDIR="$1" install + +# Even when only installing libraries, the build system installs manual pages +# and documentation for the utilities. +rm -r "${1:?}/usr/share" |