mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 18:28:59 +08:00
24 lines
512 B
Bash
24 lines
512 B
Bash
|
#!/usr/bin/bash
|
||
|
set -e
|
||
|
export PATH=/usr/bin:$PATH
|
||
|
# Export HTTP(S)_PROXY as http(s)_proxy:
|
||
|
if [ "$HTTP_PROXY" ]; then
|
||
|
export http_proxy=$HTTP_PROXY
|
||
|
fi
|
||
|
if [ "$HTTPS_PROXY" ]; then
|
||
|
export https_proxy=$HTTPS_PROXY
|
||
|
fi
|
||
|
|
||
|
PATH_TO_BUILD_DIR=$1
|
||
|
PATH_TO_SRC_DIR=$2
|
||
|
PATH_TO_PACKAGE_DIR=$3
|
||
|
# Note: $4 is extra configure options
|
||
|
|
||
|
cd "$PATH_TO_BUILD_DIR"
|
||
|
echo "=== CONFIGURING ==="
|
||
|
"$PATH_TO_SRC_DIR/configure" "--prefix=$PATH_TO_PACKAGE_DIR" $4
|
||
|
echo "=== BUILDING ==="
|
||
|
make -j6
|
||
|
echo "=== INSTALLING ==="
|
||
|
make install
|