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