diff options
author | Cem Keylan <cem@ckyln.com> | 2021-09-24 13:32:07 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-09-24 13:32:07 +0300 |
commit | f0f0ba989b5e0cec0cac5589bc9192f8262e9b1e (patch) | |
tree | e2fe5e0cfb24d891c58bb89c88b98a312a1d3851 /testing/libnghttp2/build | |
parent | 9dd254de0820f79524a755f69c9564898edb0ddc (diff) | |
download | repository-f0f0ba989b5e0cec0cac5589bc9192f8262e9b1e.tar.gz |
libnghttp2: add new package at 1.45.1 [TESTING]
Diffstat (limited to 'testing/libnghttp2/build')
-rwxr-xr-x | testing/libnghttp2/build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/libnghttp2/build b/testing/libnghttp2/build new file mode 100755 index 00000000..a1bc15c9 --- /dev/null +++ b/testing/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" |