# # Apps Packages for Chakra, part of chakra-project.org # # maintainer (x86_64): Giuseppe calĂ  # include global config source ../_buildscripts/${current_repo}-${_arch}-cfg.conf pkgname=check pkgver=0.9.11 pkgrel=1 pkgdesc="A unit testing framework for C" arch=('x86_64') url="http://check.sourceforge.net/" license=('LGPL') options=('!libtool') categories=('programming') install=$pkgname.install source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('fd5a03979bcab9fb80ba005b55f54178') build() { cd ${srcdir}/$pkgname-$pkgver ./configure --prefix=/usr make || return 1 } package() { cd ${srcdir}/$pkgname-$pkgver make DESTDIR=${pkgdir} install #get rid of the package's info directory, install-info adds entries for us at install-time rm ${pkgdir}/usr/share/info/dir || return 1 }