16 lines
204 B
Plaintext
16 lines
204 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
cd Project/GNU/Library
|
||
|
|
||
|
./autogen.sh
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--enable-shared \
|
||
|
--disable-static \
|
||
|
--with-libcurl \
|
||
|
--with-libmms
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|