30 lines
622 B
Text
30 lines
622 B
Text
|
#!/bin/sh
|
||
|
|
||
|
PKG_PREFIX=${PKG_PREFIX:-/usr/local}
|
||
|
|
||
|
if [ $# -ne 2 ]; then
|
||
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
pname=${1%-*}
|
||
|
pversion=${1##*-}
|
||
|
|
||
|
#echo the extracted port name is $pname
|
||
|
#echo the extracted port version is $pversion
|
||
|
|
||
|
execs="mcstas mcformat"
|
||
|
|
||
|
case $2 in
|
||
|
POST-INSTALL)
|
||
|
if [ ! -f "${PKG_PREFIX}/bin" ]; then
|
||
|
echo "Installing links to ${1} executables in ${PKG_PREFIX}/bin.";
|
||
|
for target in ${execs}; do
|
||
|
ln -s ${PKG_PREFIX}/${pname}/${pversion}/bin/${target} ${PKG_PREFIX}/bin/${target};
|
||
|
done
|
||
|
fi
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
exit 0
|