Created
December 8, 2011 18:53
-
-
Save jsoverson/1448038 to your computer and use it in GitHub Desktop.
SilkJS simplified dependency build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir deps | |
cd deps | |
export SILKURL=https://github.com/downloads/mschwartz/SilkJS/ | |
for DEP in mysql-5.1.58.tar.gz mm_1.4.2.orig.tar.gz libjpeg8_8b.orig.tar.gz libgd2_2.0.36~rc1~dfsg.orig.tar.gz; do \ | |
echo Downloading $DEP; curl -LO $SILKURL$DEP && echo Extracting $DEP && tar -xzf $DEP && echo Done; done | |
for DEP in mysql mm jpeg libgd2; do cd $DEP*; ./configure && make && sudo make install; cd ..; done | |
cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment