opt/cppunit/Pkgfile

21 lines
411 B
Plaintext
Raw Normal View History

2021-01-29 00:51:50 +01:00
# Description: C++ unit testing library
# URL: https://www.freedesktop.org/wiki/Software/cppunit/
# Maintainer: Tim Biermann, tbier at posteo dot de
2015-01-27 11:25:47 +01:00
name=cppunit
2020-01-01 05:59:48 +01:00
version=1.15.1
2019-08-08 13:21:27 +02:00
release=1
source=(https://dev-www.libreoffice.org/src/$name-$version.tar.gz)
2015-01-27 11:25:47 +01:00
build() {
2021-01-29 00:51:50 +01:00
cd $name-$version
2019-08-08 13:21:27 +02:00
2021-01-29 00:51:50 +01:00
./configure \
--prefix=/usr \
--disable-doxygen
2015-01-27 11:25:47 +01:00
2021-01-29 00:51:50 +01:00
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
2015-01-27 11:25:47 +01:00
}