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