freebsd-ports/science/mcstas/pkg-install
Kurt Jaeger 2f70efd363 New port: science/mcstas
Monte Carlo ray tracing simulations of neutron experiments.

McStas is a tool for simulating neutron instrumentation and experiments
using a ray-tracing formalism. Currently the main use of McStas is
in the field of instrument design.

WWW: http://www.mcstas.org

PR:		194846
Submitted by:	Erik B. Knudsen <erkn@fysik.dtu.dk>
2015-01-05 09:15:55 +00:00

29 lines
622 B
Bash

#!/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