mirror of
https://github.com/jorisvink/kore
synced 2025-03-09 20:49:01 -04:00
Allows building Kore with several different component versions. Eg: $ ./build-kore.sh 1.1.1h 3.9.0 7.72.0 1.41.0 Will build Kore with OpenSSL 1.1.1h, Python 3.9.0, Curl 7.72.0 and nghttp2 (for curl) 1.41.0
17 lines
291 B
Bash
Executable File
17 lines
291 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
. ./env.sh
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: build-nghttp2.sh [release]"
|
|
exit 1
|
|
fi
|
|
|
|
NAME=nghttp2-$1
|
|
|
|
fetch "https://github.com/nghttp2/nghttp2/releases/download/v$1/$NAME.tar.gz" $NAME
|
|
|
|
default_build $NAME --enable-lib-only --prefix=$FAKEROOT/$NAME --enable-shared=no
|