#!/usr/bin/env bash set -e profile_name="$1" if test -z "$profile_name"; then case "$(uname)" in Linux) profile_name=linux ;; Darwin) profile_name=darwin ;; *) echo "Unsupported system type: $(uname)" exit 1 ;; esac fi profile="$profile_name.py" if ! test -f "../bockbuild/profiles/banshee/$profile"; then echo "Profile does not exist: build/bundle/$profile" exit 1 fi selfdir="$(pwd)/$(dirname "$0")" envfile="$selfdir/$profile_name.env" pushd ../bockbuild/profiles/banshee &>/dev/null ./$profile -bv ./$profile -e > "$envfile" popd &>/dev/null [ $profile_name = darwin ] && \ echo "export GTK2_RC_FILES=\"$selfdir/../../bockbuild/profiles/banshee/skeleton.darwin/Contents/Resources/etc/gtk-2.0/gtkrc\"" >> "$envfile" source "$envfile" NOCONFIGURE=1 ./autogen.sh ./profile-configure $profile_name --prefix="$BUILD_PREFIX" cat <