13 lines
138 B
Plaintext
13 lines
138 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
mv Makefile mkfilemid
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
|
||
|
rm Makefile
|
||
|
ln -s mkfilemid Makefile
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|