Ariya Hidayat 2014-07-28 06:17:46 -07:00
parent e2682edf48
commit 53edf23e8f
1 changed files with 16 additions and 3 deletions

View File

@ -64,6 +64,8 @@ QT_CFG+=' -D QT_NO_STYLE_CLEANLOOKS'
QT_CFG+=' -D QT_NO_STYLE_MOTIF' QT_CFG+=' -D QT_NO_STYLE_MOTIF'
QT_CFG+=' -D QT_NO_STYLE_PLASTIQUE' QT_CFG+=' -D QT_NO_STYLE_PLASTIQUE'
SILENT=''
until [ -z "$1" ]; do until [ -z "$1" ]; do
case $1 in case $1 in
"--qt-config") "--qt-config")
@ -74,6 +76,10 @@ until [ -z "$1" ]; do
shift shift
COMPILE_JOBS=$1 COMPILE_JOBS=$1
shift;; shift;;
"--silent")
SILENT='-s'
QT_CFG+=" -silent"
shift;;
"--help") "--help")
echo "Usage: $0 [--qt-config CONFIG] [--jobs NUM]" echo "Usage: $0 [--qt-config CONFIG] [--jobs NUM]"
echo echo
@ -92,6 +98,13 @@ done
# For parallelizing the bootstrapping process, e.g. qmake and friends. # For parallelizing the bootstrapping process, e.g. qmake and friends.
export MAKEFLAGS=-j$COMPILE_JOBS export MAKEFLAGS=-j$COMPILE_JOBS
./configure -prefix $PWD $QT_CFG if [ -z "$SILENT" ]; then
make -j$COMPILE_JOBS ./configure -prefix $PWD $QT_CFG
popd else
echo "Setting up Qt. Please wait..."
./configure -prefix $PWD $QT_CFG &> /dev/null
fi
echo
echo "Building Qt and WebKit. Please wait..."
make -j$COMPILE_JOBS $SILENT