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