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.
12 lines
305 B
Text
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
|