16 lines
204 B
Bash
Executable File
16 lines
204 B
Bash
Executable File
#!/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
|