summaryrefslogtreecommitdiffstats
path: root/audio-creation/supercollider/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'audio-creation/supercollider/BUILD')
-rwxr-xr-xaudio-creation/supercollider/BUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/audio-creation/supercollider/BUILD b/audio-creation/supercollider/BUILD
new file mode 100755
index 0000000000..d0fda25e2c
--- /dev/null
+++ b/audio-creation/supercollider/BUILD
@@ -0,0 +1,31 @@
+(
+
+./linux/bootstrap &&
+./configure --prefix=/usr \
+ $OPTS &&
+make &&
+make install &&
+
+cd source/plugins &&
+./configure --prefix=/usr \
+ $OPTS &&
+make &&
+make install &&
+
+echo -e "\n\nEverything built fine, now you should take a look at
+http://swiki.hfbk-hamburg.de:8888/MusicTechnology/558 for further
+instructions on how to use supercollider."
+
+echo -e "\nInstalling scfront..."
+
+cp -f $SCRIPT_DIRECTORY/scfront.tk /usr/bin/scfront &&
+chmod 755 /usr/bin/scfront &&
+
+echo "Done!"
+
+echo -e "\nAdding SC_LIB_DIR to /etc/profile..." &&
+mkdir -p ${INSTALL_ROOT}/etc/profile.d/ &&
+install -m 0644 $SCRIPT_DIRECTORY/sc.sh ${INSTALL_ROOT}/etc/profile.d/
+echo "Done!"
+
+) > $C_FIFO 2>&1