mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
9 lines
251 B
Plaintext
9 lines
251 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
cd $WRKSRC || exit 1;
|
||
|
|
||
|
sed -e s:/usr/local:$PREFIX: <local.h.samp >local.h || exit 1;
|
||
|
echo '#define LANGUAGES "{american,MASTERDICTS=american.med+,HASHFILES=americanmed+.hash,EXTRADICT=/usr/share/dict/words}"' >>local.h ||exit 1;
|
||
|
|
||
|
exit 0;
|