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