]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.57
authorfred <fred>
Sun, 24 Mar 2002 20:08:42 +0000 (20:08 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:08:42 +0000 (20:08 +0000)
bin/conflily.sh [new file with mode: 0644]

diff --git a/bin/conflily.sh b/bin/conflily.sh
new file mode 100644 (file)
index 0000000..2eab5a0
--- /dev/null
@@ -0,0 +1,37 @@
+#!/bin/sh
+# conflily
+# ugh: must be executed from lilypond-x.x.x (bin/conflily)
+
+# the lilypond root dir looks like this:
+# current -> ./lilypond-x.x.x  symlink to current source
+# lilypond-x.x.x               the lilypond source
+# patches                      gzipped patches
+# releases                     gzipped releases
+
+# the lily root dir
+#
+lelie=$HOME/music/lily
+#
+
+if [ ! -e $HOME/lelie ]; then
+       ln -s $lelie $HOME/lelie
+fi
+
+rm $lelie/current 2>&1 > /dev/null
+current=`basename \`pwd\``
+echo ln -s $lelie/$current $lelie/current
+ln -s $lelie/$current $lelie/current
+
+if [ "x$LILYINCLUDE" = "x" ]; then
+       echo you should make add the following to your login script
+       echo "export LILYINCLUDE=$lelie/current/init:$lelie/current/mutopia:$lelie/current/input:$lelie/current/mutopia/J.S.Bach:"
+       echo "export PATH=$PATH:$lelie/current/bin"
+       echo "export MFINPUTS=$MFINPUTS:$lelie/current/mf"
+fi
+
+mkdir -p ../build
+(cd ../build; 
+ln -sf $lelie/build/lily/lilypond bin/lilypond
+ln -sf $lelie/build/mi2mu/mi2mu bin/mi2mu
+../current/configure --prefix=/usr --enable-debugging --enable-printing --enable-checking)
+