opt/cppunit/Pkgfile

23 lines
470 B
Plaintext
Raw Normal View History

2015-01-27 11:25:47 +01:00
# Description: C++ unit testing library
# URL: http://sourceforge.net/projects/cppunit
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
name=cppunit
version=1.12.1
2016-09-01 05:08:00 +02:00
release=2
2015-01-27 11:25:47 +01:00
source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz)
build() {
cd $name-$version
CONFIG_SHELL=/bin/bash \
2015-01-27 11:25:47 +01:00
./configure \
--prefix=/usr \
2016-09-01 05:08:00 +02:00
--mandir=/usr/share/man \
2015-01-27 11:25:47 +01:00
--disable-doxygen
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}