void-packages/srcpkgs/xoris/template
2018-11-30 15:43:29 -02:00

21 lines
540 B
Bash

# Template file for 'xoris'
pkgname=xoris
version=0.1e
revision=3
makedepends="libX11-devel"
depends="rgb"
short_desc="Grabs color from the screen and dumps it to stdout"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="X11"
homepage="http://sourceforge.net/projects/xoris/"
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
checksum=8902d391bfb1a15f21afdd7626634fb3dfa6240814d6c2bcde2ee06377bd675c
do_build() {
${CC} ${CFLAGS} -o xoris main.c -lX11 ${LDFLAGS}
}
do_install() {
vbin xoris
vlicense LICENSE
}