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