### this file is sourced not run
PKGVER=2016.05 # latest as of 2018-09-28
PKGBUILD=1
PKGARCH=x86_64

# source: james
TARBALL= # internal
MD5SUM=  # internal
SRC_URL= # internal
BUNDLE=

SLACKREQ='alsa-lib libX11' 
SLACKDESC="xbelld: xbelld $PKGVER (beep using your soundcard)  
xbelld:  
xbelld: xbelld is a tiny utility to aid people who either don't like the 
xbelld: default PC speaker beep, or (like me) use an ALSA driver that doesn't 
xbelld: yet have support for the PC speaker. xbelld performs a given action 
xbelld: every time the X bell is rung. The actions xbelld can currently 
xbelld: perform include running a specified program, emulating the PC speaker 
xbelld: beep using your sound card (default), or playing a PCM encoded WAVE 
xbelld: file.  
xbelld: 
xbelld: https://gitlab.com/gi1242/xbelld
"

### nothing to download
unset -f pkg_download

### prepare
pkg_prepare() {
	: nothing to prepare
}
### default pkg_package
### build
pkg_build() {
	cd /tmp/pkg/src && # src is inside
	make $MAKEFLAGS && 
	make install prefix=/usr &&
	pkg_build_slackdesc
}
