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