Skip to content

Instantly share code, notes, and snippets.

@jsoverson
Created December 8, 2011 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsoverson/1448038 to your computer and use it in GitHub Desktop.
Save jsoverson/1448038 to your computer and use it in GitHub Desktop.
SilkJS simplified dependency build
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