mirror of
https://github.com/yuzu-emu/ext-linux-bin.git
synced 2024-11-22 11:25:44 +01:00
12 lines
240 B
Bash
12 lines
240 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
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}
|