11 lines
131 B
Plaintext
11 lines
131 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
CFLAGS='-O2 -w -pipe'
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--enable-native
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|