mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
12 lines
151 B
Plaintext
12 lines
151 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
cd $WRKSRC || exit 1;
|
||
|
|
||
|
cat >> Makefile << END || exit 1;
|
||
|
|
||
|
BINDIR = $PREFIX/bin
|
||
|
HFSBIN = \$(BINDIR)/hfs
|
||
|
WISH = \$(BINDIR)/wish
|
||
|
END
|
||
|
|
||
|
exit 0;
|