10 lines
106 B
Plaintext
10 lines
106 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
#patch -Np1 -i fixes.patch
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|