wok diff 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 diff
     1.1 --- a/cppunit/receipt	Sat Nov 30 10:06:29 2013 +0000
     1.2 +++ b/cppunit/receipt	Wed Jun 17 15:35:48 2020 +0100
     1.3 @@ -1,28 +1,34 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="cppunit"
     1.7 -VERSION="1.12.1"
     1.8 +VERSION="1.15.1"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="A C++ unit testing framework."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="LGPL2.1"
    1.13 +WEB_SITE="https://freedesktop.org/wiki/Software/cppunit/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://cppunit.sourceforge.net/"
    1.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.18 +WGET_URL="https://dev-www.libreoffice.org/src/$TARBALL"
    1.19 +
    1.20 +DEPENDS="gcc83-lib-base"
    1.21 +BUILD_DEPENDS="gcc83"
    1.22  
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26 -	cd $src
    1.27 -	./configure \
    1.28 -		--prefix=/usr \
    1.29 +	./configure		\
    1.30 +		CC=gcc-83	\
    1.31 +		CXX=g++-83	\
    1.32 +		--prefix=/usr	\
    1.33  		$CONFIGURE_ARGS &&
    1.34 -	make && make install
    1.35 +	make &&
    1.36 +	make install
    1.37  }
    1.38  
    1.39  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.40  genpkg_rules()
    1.41  {
    1.42  	mkdir -p $fs/usr/lib
    1.43 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.44 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.45  }