# Description:  beep is a command line tool for linux that beeps the PC speaker
# URL:  http://www.johnath.com/beep/
# Maintainer:  z3bra, dev at z3bra dot org
# Depends on:  

name=beep
version=1.3
release=2
source=(http://www.johnath.com/beep/$name-$version.tar.gz)

build() {
    cd "$name-$version"

    make

    mkdir -p $PKG/usr/bin
    mkdir -p $PKG/usr/share/man

    make INSTALL_DIR=$PKG/usr/bin \
        MAN_DIR=$PKG/usr/share/man \
        install

    echo "run chmod 4755 /usr/bin/beep to allow running as unprivileged user"
}
# vim: set ft=sh ts=4 et:
