pkgsrc-wip/lilypond20/INSTALL
Patrick Atamaniuk 5702aeeb1b LilyPond is a music typesetter. It produces sheet music using a
high-level description file, which is plain text, as input.  You
can use your favorite text editor to enter the description files.
The font and the layout were inspired by engraved music, but can
be modified.  The program also has limited MIDI functionality: you
can write MIDI files, and there is a MIDI to lilypond conversion
tool, midi2ly.  Conversion tools for PMX, MUP, ABC, Finale and
Musedata are also included.
2003-10-24 14:30:07 +00:00

12 lines
305 B
Text

#!/bin/sh
case $2 in
POST-INSTALL)
PATH=${LOCALBASE:-/usr/pkg}/bin:${PATH}
datadir=${PKG_PREFIX}/share/lilypond/2.0.1/
export TEXMF="{${datadir},"`kpsexpand \\$TEXMF`"}"
echo $1
echo ${datadir}
echo ${TEXMF}
texhash
;;
esac