11 lines
89 B
Bash
11 lines
89 B
Bash
#!/bin/bash
|
|
|
|
# $Id$
|
|
|
|
set -e
|
|
cd $PKGDIR
|
|
./configure --prefix=/usr
|
|
make
|
|
make install
|
|
|
|
exit
|