updated on Sun Jan 22 20:01:29 UTC 2012
[aur-mirror.git] / cpptest / PKGBUILD
blob65ed793d5bd5772e0f7d86cc437425617eb7edfe
1 # Contributor: Juan Pablo Gonzalez Tognarelli <lord_jotape@yahoo.com.ar>
2  pkgname=cpptest
3  pkgver=1.1.1
4  pkgrel=1
5  pkgdesc="CppTest is a portable and powerful unit testing framework for handling automated tests in C++. with focus on usability and extendability." 
6  url="http://cpptest.sourceforge.net/" 
7  depends=(gcc-libs)
8  makedepends=(pkgconfig)
9  source=(http://downloads.sourceforge.net/sourceforge/cpptest/$pkgname-$pkgver.tar.gz)
10  md5sums=('b50379402d69d40417add19ef88f9938')
11  arch=('i686' 'x86_64')
12  license="LGPL" 
13  build() { 
14         cd ${srcdir}/$pkgname-$pkgver
15         ./configure --prefix=/usr
16         make || return 1
17         make DESTDIR=${pkgdir} install
19