summaryrefslogtreecommitdiff
path: root/extra/check/PKGBUILD
blob: 6ab2354ba9d71ea1df7018451491ebda3ffce4c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# $Id: PKGBUILD 171322 2012-11-17 08:55:42Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Jeremy Cowgar <jeremy@cowgar.com>

pkgname=check
pkgver=0.9.9
pkgrel=1
pkgdesc="A unit testing framework for C"
arch=('i686' 'x86_64')
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"
}