diff options
author | Brody Kenrick <user.fake@server.userfake> | 2013-12-06 06:46:52 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-12-08 23:35:36 (GMT) |
commit | d2575016b989b9cee5b44c29f10a76d84a7bf182 (patch) | |
tree | f848b5a62a9478472696b40a7f32e3e47602ffe9 /scripts/uni-build-dependencies.sh | |
parent | c0849eb1d3c98db505eec0396c56276a9a35120f (diff) |
Add in missed glib build dependencies for OS X and unix
Diffstat (limited to 'scripts/uni-build-dependencies.sh')
-rwxr-xr-x | scripts/uni-build-dependencies.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/scripts/uni-build-dependencies.sh b/scripts/uni-build-dependencies.sh index 8d912c3..ba328b7 100755 --- a/scripts/uni-build-dependencies.sh +++ b/scripts/uni-build-dependencies.sh @@ -409,6 +409,31 @@ build_glew() GLEW_DEST=$DEPLOYDIR $MAKER install } +build_glib2() +{ + version="$1" + maj_min_version="${version%.*}" #Drop micro + + if [ -e $DEPLOYDIR/lib/glib-2.0 ]; then +echo "glib2 already installed. not building" + return +fi + +echo "Building glib2 $version..." + cd "$BASEDIR"/src + rm -rf "glib-$version" + if [ ! -f "glib-$version.tar.xz" ]; then +curl --insecure -LO "http://ftp.gnome.org/pub/gnome/sources/glib/$maj_min_version/glib-$version.tar.xz" + fi +tar xJf "glib-$version.tar.xz" + cd "glib-$version" + + ./configure --prefix="$DEPLOYDIR" + make -j$NUMCPU + make install + +} + build_opencsg() { if [ -e $DEPLOYDIR/lib/libopencsg.so ]; then |