mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
16 lines
300 B
Plaintext
16 lines
300 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case ${LANGUAGE} in
|
||
|
Japanese)
|
||
|
for f in DeepForest.app; do
|
||
|
${PERL} -pi -e '
|
||
|
s/^(exec[ \t]+)wishstep[^ \t]*([ \t]+.*)$/$1wishstep$ENV{VERSION}jp$2/
|
||
|
' ${PREFIX}/JDE/DeepForest/${f}
|
||
|
done
|
||
|
;;
|
||
|
*)
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
${LN} -sf ${PREFIX}/JDE/DeepForest/DeepForest.app ${PREFIX}/bin
|