26 lines
648 B
Bash
26 lines
648 B
Bash
# Template file for '9menu'
|
|
pkgname=9menu
|
|
version=1.10
|
|
revision=1
|
|
makedepends="libX11-devel"
|
|
short_desc="Lightweight menu for X11"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="ftp://freefriends.org/arnold/Source"
|
|
distfiles="ftp://freefriends.org/arnold/Source/${pkgname}-${version}.shar.gz"
|
|
checksum=21db836fb02f3686c33233c5b4c09376fcf694b736f0297436f97df137358ac2
|
|
create_wrksrc=yes
|
|
|
|
do_extract() {
|
|
zcat "${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-${version}.shar.gz" | sh
|
|
}
|
|
|
|
do_build() {
|
|
${CC} ${CFLAGS} ${LDFLAGS} 9menu.c -lX11 -o 9menu
|
|
}
|
|
|
|
do_install() {
|
|
vbin 9menu
|
|
vman 9menu.1
|
|
vlicense README LICENSE
|
|
}
|