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