wok view cppunit/receipt @ rev 23859

updated firefox-official (76.0 -> 77.0)
author Hans-G?nter Theisgen
date Wed Jun 17 15:35:48 2020 +0100 (2020-06-17)
parents eb8067417980
children 2a0479881723
line source
1 # SliTaz package receipt.
3 PACKAGE="cppunit"
4 VERSION="1.15.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="A C++ unit testing framework."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://freedesktop.org/wiki/Software/cppunit/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://dev-www.libreoffice.org/src/$TARBALL"
14 DEPENDS="gcc83-lib-base"
15 BUILD_DEPENDS="gcc83"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 CC=gcc-83 \
22 CXX=g++-83 \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }