mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
10 lines
255 B
Plaintext
10 lines
255 B
Plaintext
|
#!/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
|