VERSION=1.1
BUILD=1
ARCH=i386

PKGNAME=rexima-$VERSION-$ARCH-$BUILD

IGNOREPATH=/tmp:/proc:/dev:/root:/var/log:/a
STRIPLIB=y
STRIPBIN=y

PROGNAME=rexima
DESC="\
rexima-$VERSION\n\
\n\
rexima is a simple ncurses-based audio mixer. It's designed to\n\
be small, fast, and straightforward. It also offers a command\n\
line mode so you can script mixer settings.\n\
\n\
NOTE: root will need to set the permissions on the appropriate\n\
/dev/mixer* devices to allow users to adjust the sound settings."

compile() {
   tar xvzf $CWD/rexima-$VERSION.tar.gz
   cd rexima-$VERSION
   make
}

install() {
   cp rexima /usr/bin
   cat rexima.1 | gzip -9c > /usr/man/man1/rexima.1.gz
   mkdir -p /usr/doc/rexima-$VERSION
   cp COPYING README ChangeLog NEWS /usr/doc/rexima-$VERSION
}
