Skip to content

Instantly share code, notes, and snippets.

@Simbioz-Admin
Last active October 7, 2015 15:19
Show Gist options
  • Save Simbioz-Admin/53cf44cdf4747e745c89 to your computer and use it in GitHub Desktop.
Save Simbioz-Admin/53cf44cdf4747e745c89 to your computer and use it in GitHub Desktop.
APP_ROOT=$(pwd)
# Install apt-get dependencies
apt-get install -y git automake python3.4-dev bison build-essential flex libtool libglib2.0-dev puredata-dev libsamplerate0-dev nodejs-legacy npm libjson-glib-dev liblo-dev libcgsi-gsoap-dev linux-libc-dev libgtk2.0-dev libpulse-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev chromium-browser ruby ruby-dev
# Install Node.js dependencies
npm install -g node-gyp
npm install -g bower
# Install gem dependencies
gem update
gem install compass
# Install libshmdata
cd $APP_ROOT
git clone git://code.sat.qc.ca/libshmdata.git
cd libshmdata
git checkout develop
./autogen.sh
./configure
make
make install
ldconfig
# Install Switcher
cd $APP_ROOT
git clone git://code.sat.qc.ca/switcher.git
cd switcher
git checkout develop
./autogen.sh
./configure
make
make install
ldconfig
# Install Scenic2
cd $APP_ROOT
git clone https://github.com/Simbioz-Admin/scenic2
cd scenic2
npm install
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment