mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
3a4e3bb240
Purdue University. This is a Perl based implementation of the AAFID architecture as presented in COAST Technical Report 98/05.
14 lines
206 B
Bash
14 lines
206 B
Bash
#!/bin/sh
|
|
|
|
PREFIX=$1
|
|
AAFID_DIR=${PREFIX}/lib/aafid2
|
|
|
|
set -e
|
|
|
|
cat >> ${AAFID_DIR}/config/AAFID <<*__END__*
|
|
|
|
## ------------------------------
|
|
## FreeBSD Port specific defaults
|
|
BaseDir=${AAFID_DIR}
|
|
*__END__*
|