desktop/cppunit/PKGBUILD

28 lines
601 B
Bash
Raw Normal View History

2011-02-26 22:58:38 +08:00
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
pkgname=cppunit
2014-04-11 19:24:24 +08:00
pkgver=1.13.2
2011-02-26 22:58:38 +08:00
pkgrel=1
pkgdesc="A C++ unit testing framework"
2014-04-11 19:24:24 +08:00
arch=('x86_64')
url="http://www.freedesktop.org/wiki/Software/cppunit"
2011-02-26 22:58:38 +08:00
license=('LGPL')
depends=('sh' 'gcc-libs')
makedepends=('gcc')
options=('!libtool')
2014-04-11 19:24:24 +08:00
source=("http://dev-www.libreoffice.org/src/${pkgname}-${pkgver}.tar.gz")
md5sums=('d1c6bdd5a76c66d2c38331e2d287bc01')
2011-02-26 22:58:38 +08:00
build() {
cd ${srcdir}/$pkgname-$pkgver
autoreconf
libtoolize -f
./configure --prefix=/usr
2014-04-11 19:24:24 +08:00
make
2011-02-26 22:58:38 +08:00
}
package() {
cd ${srcdir}/$pkgname-$pkgver
2014-04-11 19:24:24 +08:00
make DESTDIR=${pkgdir} install
2011-02-26 22:58:38 +08:00
}