wok rev 22617

updated cppunit and cppunit-dev (1.12.1 -> 1.15.1)
author Hans-G?nter Theisgen
date Sun Jan 12 10:08:30 2020 +0100 (2020-01-12)
parents 9b6a3a5c1a07
children f4915935c316
files cppunit-dev/receipt cppunit/receipt
line diff
     1.1 --- a/cppunit-dev/receipt	Sun Jan 12 09:19:37 2020 +0100
     1.2 +++ b/cppunit-dev/receipt	Sun Jan 12 10:08:30 2020 +0100
     1.3 @@ -1,23 +1,25 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="cppunit-dev"
     1.7 -VERSION="1.12.1"
     1.8 +VERSION="1.15.1"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Devel file for the cppunit framework."
    1.11 +SHORT_DESC="Development files for the cppunit framework."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="LGPL2.1"
    1.14 -WEB_SITE="http://cppunit.sourceforge.net/"
    1.15 -WANTED="cppunit"
    1.16 +WEB_SITE="https://freedesktop.org/wiki/Software/cppunit/"
    1.17  
    1.18  DEPENDS="pkg-config"
    1.19 +WANTED="cppunit"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24 -	mkdir -p $fs/usr/lib $fs/usr/share
    1.25 -	cp -a $install/usr/bin $fs/usr
    1.26 -	cp -a $install/usr/include $fs/usr
    1.27 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.28 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.29 -	cp -a $install/usr/share/aclocal $fs/usr/share
    1.30 +	mkdir -p $fs/usr/lib
    1.31 +#	mkdir -p $fs/usr/share
    1.32 +
    1.33 +	cp -a $install/usr/bin			$fs/usr
    1.34 +	cp -a $install/usr/include		$fs/usr
    1.35 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.36 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.37 +#	cp -a $install/usr/share/aclocal	$fs/usr/share
    1.38  }
     2.1 --- a/cppunit/receipt	Sun Jan 12 09:19:37 2020 +0100
     2.2 +++ b/cppunit/receipt	Sun Jan 12 10:08:30 2020 +0100
     2.3 @@ -1,28 +1,34 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="cppunit"
     2.7 -VERSION="1.12.1"
     2.8 +VERSION="1.15.1"
     2.9  CATEGORY="system-tools"
    2.10  SHORT_DESC="A C++ unit testing framework."
    2.11  MAINTAINER="pankso@slitaz.org"
    2.12  LICENSE="LGPL2.1"
    2.13 +WEB_SITE="https://freedesktop.org/wiki/Software/cppunit/"
    2.14 +
    2.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.16 -WEB_SITE="http://cppunit.sourceforge.net/"
    2.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.18 +WGET_URL="https://dev-www.libreoffice.org/src/$TARBALL"
    2.19 +
    2.20 +DEPENDS="gcc83-lib-base"
    2.21 +BUILD_DEPENDS="gcc83"
    2.22  
    2.23  # Rules to configure and make the package.
    2.24  compile_rules()
    2.25  {
    2.26 -	cd $src
    2.27 -	./configure \
    2.28 -		--prefix=/usr \
    2.29 +	./configure		\
    2.30 +		CC=gcc-83	\
    2.31 +		CXX=g++-83	\
    2.32 +		--prefix=/usr	\
    2.33  		$CONFIGURE_ARGS &&
    2.34 -	make && make install
    2.35 +	make &&
    2.36 +	make install
    2.37  }
    2.38  
    2.39  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.40  genpkg_rules()
    2.41  {
    2.42  	mkdir -p $fs/usr/lib
    2.43 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.44 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.45  }