mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
14a9fcd419
clone. Submitted by: James FitzGibbon <james@nexis.net>
10 lines
255 B
Bash
10 lines
255 B
Bash
#!/bin/sh
|
|
|
|
cd $WRKSRC || exit 1
|
|
|
|
cp configure.h configure.h.orig
|
|
cp sample.steprc sample.steprc.orig
|
|
sed -e "s:@@PREFIX@@:$PREFIX:g" < configure.h.orig > configure.h
|
|
sed -e "s:@@PREFIX@@:$PREFIX:g" < sample.steprc.orig > sample.steprc
|
|
chmod u+x Installme
|