# $Id: PKGBUILD 171322 2012-11-17 08:55:42Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) # Contributor: Jaroslav Lichtblau # Contributor: Jeremy Cowgar pkgname=check pkgver=0.9.9 pkgrel=1 pkgdesc="A unit testing framework for C" arch=('i686' 'x86_64' 'mips64el') url="http://check.sourceforge.net/" license=('LGPL') options=('!libtool') install=$pkgname.install source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('f3702f2fcfc19ce3f62dca66c241a168') build() { cd $pkgname-$pkgver ./configure --prefix=/usr --disable-static make } 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" }