#!/bin/sh MAKEDEPS="make" DEPS="xcb-util" PKG_VER=0.4.0 SOURCE=https://xcb.freedesktop.org/dist/xcb-util-image-$PKG_VER.tar.bz2 DESC="Utility libraries for XC Binding, with ports of Xlib's XImage" build () { ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static && make } package () { make DESTDIR=$PKG_DEST install }