12 lines
126 B
Text
12 lines
126 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# $Id$
|
||
|
|
||
|
set -e
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make CFLAGS="-O2 -Wno-sign-compare -Wno-pointer-sign"
|
||
|
make install
|
||
|
|
||
|
exit
|