desktop/cppunit/PKGBUILD

24 lines
505 B
Bash
Raw Normal View History

2011-02-26 22:58:38 +08:00
pkgname=cppunit
2017-09-01 21:59:32 +08:00
pkgver=1.14.0
2018-02-04 09:33:52 +08:00
pkgrel=2
2011-02-26 22:58:38 +08:00
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')
2017-09-01 21:59:32 +08:00
options=('!emptydirs')
source=("http://dev-www.libreoffice.org/src/$pkgname-$pkgver.tar.gz")
md5sums=('7ad93022171710a541bfe4bfd8b4a381')
2011-02-26 22:58:38 +08:00
build() {
2017-09-01 21:59:32 +08:00
cd $pkgname-$pkgver
./configure --prefix=/usr --disable-static
2014-04-11 19:24:24 +08:00
make
2011-02-26 22:58:38 +08:00
}
package() {
2017-09-01 21:59:32 +08:00
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
2011-02-26 22:58:38 +08:00
}