# # Platform Packages for Chakra, part of chakra-project.org # # maintainer (i686): Phil Miller # maintainer (x86_64): Manuel Tortosa # include global config source ../_buildscripts/${current_repo}-${_arch}-cfg.conf pkgname=xineramaproto pkgver=1.2.1 pkgrel=1 pkgdesc="X11 Xinerama extension wire protocol" arch=(any) url="http://xorg.freedesktop.org/" license=('custom') source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2) sha1sums=('818bffc16139d6e3de4344c83f00c495d3536753') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr || return 1 make || return 1 make DESTDIR="${pkgdir}" install || return 1 install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1 }