# HG changeset patch # User Hans-G?nter Theisgen # Date 1578820110 -3600 # Node ID b9c744416436f7c4572ecc1e8fc6a72fb7c8f214 # Parent 9b6a3a5c1a0705cf84770a4e2f79a21b845db41a updated cppunit and cppunit-dev (1.12.1 -> 1.15.1) diff -r 9b6a3a5c1a07 -r b9c744416436 cppunit-dev/receipt --- a/cppunit-dev/receipt Sun Jan 12 09:19:37 2020 +0100 +++ b/cppunit-dev/receipt Sun Jan 12 10:08:30 2020 +0100 @@ -1,23 +1,25 @@ # SliTaz package receipt. PACKAGE="cppunit-dev" -VERSION="1.12.1" +VERSION="1.15.1" CATEGORY="development" -SHORT_DESC="Devel file for the cppunit framework." +SHORT_DESC="Development files for the cppunit framework." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" -WEB_SITE="http://cppunit.sourceforge.net/" -WANTED="cppunit" +WEB_SITE="https://freedesktop.org/wiki/Software/cppunit/" DEPENDS="pkg-config" +WANTED="cppunit" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/usr/share - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/share/aclocal $fs/usr/share + mkdir -p $fs/usr/lib +# mkdir -p $fs/usr/share + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib +# cp -a $install/usr/share/aclocal $fs/usr/share } diff -r 9b6a3a5c1a07 -r b9c744416436 cppunit/receipt --- a/cppunit/receipt Sun Jan 12 09:19:37 2020 +0100 +++ b/cppunit/receipt Sun Jan 12 10:08:30 2020 +0100 @@ -1,28 +1,34 @@ # SliTaz package receipt. PACKAGE="cppunit" -VERSION="1.12.1" +VERSION="1.15.1" CATEGORY="system-tools" SHORT_DESC="A C++ unit testing framework." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" +WEB_SITE="https://freedesktop.org/wiki/Software/cppunit/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://cppunit.sourceforge.net/" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +WGET_URL="https://dev-www.libreoffice.org/src/$TARBALL" + +DEPENDS="gcc83-lib-base" +BUILD_DEPENDS="gcc83" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure \ - --prefix=/usr \ + ./configure \ + CC=gcc-83 \ + CXX=g++-83 \ + --prefix=/usr \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib }