From 54441414b60185a36dab73bac3347c868b0f0137 Mon Sep 17 00:00:00 2001 From: Shackra Sislock Date: Sat, 27 Jul 2013 22:35:40 -0600 Subject: ryzom-hg PKGBUILD does its tarballs correctly, thanks to Lukeshu --- pcr/cpptest/PKGBUILD | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pcr/cpptest/PKGBUILD (limited to 'pcr/cpptest/PKGBUILD') diff --git a/pcr/cpptest/PKGBUILD b/pcr/cpptest/PKGBUILD new file mode 100644 index 000000000..df08feb00 --- /dev/null +++ b/pcr/cpptest/PKGBUILD @@ -0,0 +1,24 @@ +# Maintainer: Jorge Araya Navarro +# Contributor (aur): Juan Pablo Gonzalez Tognarelli +pkgname=cpptest +pkgver=1.1.2 +pkgrel=2 +pkgdesc="CppTest is a portable and powerful unit testing framework for handling automated tests in C++. with focus on usability and extendability." +url="http://cpptest.sourceforge.net/" +depends=(gcc-libs) +makedepends=(pkgconfig) +source=(http://downloads.sourceforge.net/sourceforge/cpptest/$pkgname-$pkgver.tar.gz) +md5sums=('79b9bff371d182f11a3235969f84ccb6') +arch=('i686' 'x86_64') +license="LGPL" + +build() { + cd ${srcdir}/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + make DESTDIR=${pkgdir} install +} -- cgit v1.2.3-54-g00ecf