13 lines
139 B
Plaintext
13 lines
139 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
cd Project/GNU/Library
|
||
|
|
||
|
./autogen.sh
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--enable-shared
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|