# $Id$ # Maintainer: Jan Alexander Steffens (heftig) # Contributor: Jaroslav Lichtblau # Contributor: Jeremy Cowgar pkgname=check pkgver=0.9.14 pkgrel=1 pkgdesc="A unit testing framework for C" arch=('i686' 'x86_64') url="http://check.sourceforge.net/" license=('LGPL') install=$pkgname.install depends=('awk') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('38263d115d784c17aa3b959ce94be8b8') build() { cd $pkgname-$pkgver ./configure --prefix=/usr --disable-static make } check() { cd $pkgname-$pkgver # Extremely long #make -k check } package() { cd $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" # svn log file is too big rm "$pkgdir"/usr/share/doc/check/*ChangeLog* }