~ salmonella-environment-setup (master) /system-setup/debian-jessie.sh
Trap1#! /bin/sh23## Quick&dirty script to install libraries required by eggs.45set -ex67anchor=$(readlink -f $(dirname "$0"))8. "$anchor/debian-common.sh"910to_install="\11 packages/debian-jessie.sh \12 agar.sh \13 bvspis.sh \14 cmark.sh \15 cryptlib.sh \16 epeg.sh \17 iup.sh \18 canvas_draw.sh \19 kiwi.sh \20 libgit2.sh \21 proccpuinfo.sh \22 tcc.sh \23"2425for script in $to_install; do26 cd "$tmpdir"27 . "$installers_dir/$script"28done2930### glfw33132mkdir -p $tmpdir/glfw333cd $tmpdir/glfw334wget http://ufpr.dl.sourceforge.net/project/glfw/glfw/3.0.4/glfw-3.0.4.zip35unzip glfw-3.0.4.zip36cd glfw-3.0.437cmake -D BUILD_SHARED_LIBS=1 .38make39sudo make install4041# Will install:42# -- Installing: /usr/local/include/GLFW43# -- Installing: /usr/local/include/GLFW/glfw3native.h44# -- Installing: /usr/local/include/GLFW/glfw3.h45# -- Installing: /usr/local/lib/cmake/glfw/glfwConfig.cmake46# -- Installing: /usr/local/lib/cmake/glfw/glfwConfigVersion.cmake47# -- Installing: /usr/local/lib/cmake/glfw/glfwTargets.cmake48# -- Installing: /usr/local/lib/cmake/glfw/glfwTargets-noconfig.cmake49# -- Installing: /usr/local/lib/pkgconfig/glfw3.pc50# -- Installing: /usr/local/lib/libglfw.so.3.051# -- Installing: /usr/local/lib/libglfw.so.352# -- Installing: /usr/local/lib/libglfw.so535455### nanomsg5657mkdir -p $tmpdir/nanomsg58cd $tmpdir/nanomsg59wget http://download.nanomsg.org/nanomsg-0.4-beta.tar.gz60tar xzvf nanomsg-0.4-beta.tar.gz61cd nanomsg-0.4-beta62./configure --prefix=/usr/local63make64sudo make install6566### libsass6768mkdir -p $tmpdir/libsass69cd $tmpdir/libsass70wget https://github.com/sass/libsass/archive/3.2.5.tar.gz -O libsass-3.2.5.tar.gz71tar xzvf libsass-3.2.5.tar.gz72cd libsass-3.2.5/73make74sudo make install install-shared757677### Finishing78sudo ldconfig