12 lines
95 B
Text
12 lines
95 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# $Id$
|
||
|
|
||
|
set -e
|
||
|
|
||
|
./configure --prefix=/usr --sysconfdir=/etc
|
||
|
make
|
||
|
make install
|
||
|
|
||
|
exit
|