mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 19:20:36 -04:00
12 lines
155 B
Bash
12 lines
155 B
Bash
#!/bin/sh
|
|
|
|
cd $WRKSRC || exit 1;
|
|
|
|
cat >> Makefile << END || exit 1;
|
|
|
|
BINDIR = $PREFIX/bin
|
|
HFSBIN = \$(BINDIR)/hfs
|
|
WISH = \$(BINDIR)/wish8.2
|
|
END
|
|
|
|
exit 0;
|