diff --git a/srcpkgs/xoris/template b/srcpkgs/xoris/template new file mode 100644 index 00000000000..2e0b939a195 --- /dev/null +++ b/srcpkgs/xoris/template @@ -0,0 +1,21 @@ +# Template file for 'xoris' +pkgname=xoris +version=0.1e +revision=1 +makedepends="libX11-devel" +depends="rgb" +short_desc="Grabs color from the screen and dumps it to stdout" +maintainer="Christian Neukirchen " +license="MIT/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 +}