forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
11 lines
217 B
Bash
11 lines
217 B
Bash
#!/bin/sh
|
|
|
|
SIRCLIB=%%PREFIX%%/libexec/sirc ; export SIRCLIB
|
|
|
|
case "$1" in
|
|
-d) shift ; exec ${SIRCLIB}/dsirc "$@" ;;
|
|
*) eval exec %%PREFIX%%/bin/ssfe $SSFE ${SIRCLIB}/dsirc \"\$@\"
|
|
esac
|
|
|
|
# Should not be reached
|
|
exit 1
|