10 lines
111 B
Plaintext
10 lines
111 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
export CFLAGS="$CFLAGS -static"
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|