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