blob: ca25d17d3961bd867a0f88a152b6a031454d907a (
plain)
1 # Description: C++ unit testing library
2 # URL: https://www.freedesktop.org/wiki/Software/cppunit/
3 # Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
4
5 name=cppunit
6 version=1.14.0
7 release=1
8 source=(https://dev-www.libreoffice.org/src/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12
13 ./configure \
14 --prefix=/usr \
15 --disable-doxygen
16
17 make
18 make DESTDIR=$PKG install
19 rm -rf $PKG/usr/share/doc
20 }
|