8 lines
104 B
Plaintext
8 lines
104 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
sed 's^/usr/local^/usr^' Makefile > make
|
||
|
mv make Makefile
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|