Skip to content

Commit

Permalink
Add stuff needed for MOD, but disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed Mar 12, 2015
1 parent 7ab3ba7 commit 5b687f2
Showing 1 changed file with 51 additions and 1 deletion.
52 changes: 51 additions & 1 deletion data/macos/build-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,9 @@ fi
# ------------------------------------------------------------------------------------
# fltk

ignore1()
{

if [ ! -d fltk-1.3.3 ]; then
curl -O http://fltk.org/pub/fltk/1.3.3/fltk-1.3.3-source.tar.gz
tar -xf fltk-1.3.3-source.tar.gz
Expand All @@ -354,6 +357,8 @@ touch build-done
cd ..
fi

}

# ------------------------------------------------------------------------------------
# fluidsynth

Expand Down Expand Up @@ -498,6 +503,50 @@ touch build-done
cd ..
fi

# ------------------------------------------------------------------------------------
# qt5-multimedia

ignore2()
{

if [ ! -d qtmultimedia-opensource-src-5.3.2 ]; then
curl -L http://download.qt-project.org/official_releases/qt/5.3/5.3.2/submodules/qtmultimedia-opensource-src-5.3.2.tar.gz -o qtmultimedia-opensource-src-5.3.2.tar.gz
tar -xf qtmultimedia-opensource-src-5.3.2.tar.gz
fi

if [ ! -f qtmultimedia-opensource-src-5.3.2/build-done ]; then
cd qtmultimedia-opensource-src-5.3.2
qmake
make -j 2
sudo make install
touch build-done
cd ..
fi

}

# ------------------------------------------------------------------------------------
# qt5-webkit

ignore3()
{

if [ ! -d qtwebkit-opensource-src-5.3.2 ]; then
curl -L http://download.qt-project.org/official_releases/qt/5.3/5.3.2/submodules/qtwebkit-opensource-src-5.3.2.tar.gz -o qtwebkit-opensource-src-5.3.2.tar.gz
tar -xf qtwebkit-opensource-src-5.3.2.tar.gz
fi

if [ ! -f qtwebkit-opensource-src-5.3.2/build-done ]; then
cd qtwebkit-opensource-src-5.3.2
qmake
make -j 2
sudo make install
touch build-done
cd ..
fi

}

# ------------------------------------------------------------------------------------
# python

Expand Down Expand Up @@ -543,7 +592,8 @@ fi
if [ ! -f PyQt-gpl-5.3.2/build-done ]; then
cd PyQt-gpl-5.3.2
sed -i -e "s/# Read the details./pylib_dir = ''/" configure.py
python3 configure.py --confirm-license
sed -i -e "s/qmake_QT=['webkitwidgets']/qmake_QT=['webkitwidgets', 'printsupport']/" configure.py
python3 configure.py --confirm-license -c
make
sudo make install
touch build-done
Expand Down

0 comments on commit 5b687f2

Please sign in to comment.