From f1db44cf6223dec1332058cc1b63b11f9c616f7e Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 20:08:42 +0000 Subject: [PATCH] lilypond-0.1.57 --- bin/conflily.sh | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 bin/conflily.sh diff --git a/bin/conflily.sh b/bin/conflily.sh new file mode 100644 index 0000000000..2eab5a059e --- /dev/null +++ b/bin/conflily.sh @@ -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) + -- 2.39.5