desktop/cppunit/PKGBUILD
2017-09-01 14:59:32 +01:00

26 lines
565 B
Bash

# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
pkgname=cppunit
pkgver=1.14.0
pkgrel=1
pkgdesc="A C++ unit testing framework"
arch=('x86_64')
url="http://www.freedesktop.org/wiki/Software/cppunit"
license=('LGPL')
depends=('sh' 'gcc-libs')
makedepends=('gcc')
options=('!emptydirs')
source=("http://dev-www.libreoffice.org/src/$pkgname-$pkgver.tar.gz")
md5sums=('7ad93022171710a541bfe4bfd8b4a381')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --disable-static
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
}