9 lines
106 B
Plaintext
9 lines
106 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--libexecdir=/usr/lib
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|