mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
17 lines
182 B
Plaintext
17 lines
182 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
cd $WRKSRC || exit 1;
|
||
|
|
||
|
cat >> Makefile << END
|
||
|
|
||
|
BINDIR=$PREFIX/bin
|
||
|
LIBDIR=$PREFIX/lib/fudgit
|
||
|
MANDIR=$PREFIX/man/man1
|
||
|
DLLRL = -Duse-dll-readline
|
||
|
|
||
|
all: freebsd
|
||
|
|
||
|
END
|
||
|
|
||
|
exit 0;
|