1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/print/dviselect/scripts/configure
Jordan K. Hubbard b7d4486e8c Jean-Marc Zucconi's dviselect port.
Submitted by:	jmz
1994-10-12 02:59:31 +00:00

9 lines
300 B
Bash

#!/bin/sh
PREFIX=${PREFIX:-/usr/local}
echo "BINDIR = $PREFIX/bin" >> $WRKSRC/Makefile || exit 1;
echo "MANDIR = $PREFIX/man" >> $WRKSRC/Makefile || exit 1;
echo "all: default" >> $WRKSRC/Makefile || exit 1;
echo "install: inst-dviselect" >> $WRKSRC/Makefile || exit 1;
exit 0;