1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/editors/muggy/scripts/post-install

31 lines
616 B
Plaintext
Raw Normal View History

#!/bin/sh
installdir=${PREFIX}/JDE/Muggy; export installdir
case ${LANGUAGE} in
Japanese)
for f in Muggy.app; do
${PERL} -pi -e '
s/^(exec[ \t]+)wishstep[^ \t]*([ \t]+.*)$/$1wishstep$ENV{VERSION}jp$2/
' ${installdir}/bin/${f}
done
;;
*)
;;
esac
for f in Muggy Muggy.app; do
case ${f} in
Muggy.app|PrefMuggy.app)
target=${installdir}/bin/${f}
;;
Muggy)
target=${installdir}/defaults/${f}
;;
esac
${PERL} -pi -e '
s@^([ \t]*set[ \t]+Jlib[ \t]+)"[^"]*"$@$1"$ENV{installdir}/"@;
' ${target}
done
${LN} -sf ${installdir}/bin/Muggy.app ${PREFIX}/bin