You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
247 B
12 lines
247 B
#!/bin/bash
|
|
set -e
|
|
|
|
THIS=$(readlink -e $0)
|
|
PKG_NAME=$1
|
|
VERSION=$2
|
|
|
|
cd /src/${PKG_NAME}_${VERSION}
|
|
/bin/bash /src/${PKG_NAME}_${VERSION}/bootstrap.sh
|
|
./b2 --prefix=/src/${PKG_NAME}-${VERSION}/usr/local install
|
|
|
|
cp $THIS /src/${PKG_NAME}-${VERSION}
|