wok diff exempi/receipt @ rev 22709

updated exempi and exempi-dev (2.1.1 -> 2.5.1)
author Hans-G?nter Theisgen
date Wed Jan 22 08:42:50 2020 +0100 (2020-01-22)
parents e6b7a2aaf2e1
children 2843032e6a9b
line diff
     1.1 --- a/exempi/receipt	Fri Apr 12 09:17:52 2019 +0200
     1.2 +++ b/exempi/receipt	Wed Jan 22 08:42:50 2020 +0100
     1.3 @@ -1,24 +1,29 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="exempi"
     1.7 -VERSION="2.1.1"
     1.8 +VERSION="2.5.1"
     1.9  CATEGORY="utilities"
    1.10  LICENSE="GPL3"
    1.11  SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform)."
    1.12  MAINTAINER="yuripourre@gmail.com"
    1.13 +WEB_SITE="https://wiki.freedesktop.org/libopenraw/Exempi/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="https://wiki.freedesktop.org/libopenraw/Exempi/"
    1.17  WGET_URL="https://libopenraw.freedesktop.org/download/$TARBALL"
    1.18  
    1.19 -DEPENDS="expat"
    1.20 -BUILD_DEPENDS="expat-dev libboost-dev libboost-test-dev"
    1.21 +DEPENDS="expat gcc83-lib-base"
    1.22 +BUILD_DEPENDS="expat-dev gcc83 libboost-dev libboost-test-dev"
    1.23  
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	./configure              \
    1.28 -		--prefix=/usr    \
    1.29 -		--enable-static-no \
    1.30 +	# unrecognised:
    1.31 +	#	--enable-static-no
    1.32 +
    1.33 +	./configure		\
    1.34 +		CC=gcc-83	\
    1.35 +		CXX=g++-83	\
    1.36 +		--prefix=/usr	\
    1.37  		$CONFIGURE_ARGS &&
    1.38  	make &&
    1.39  	make DESTDIR=$DESTDIR install
    1.40 @@ -28,5 +33,5 @@
    1.41  genpkg_rules()
    1.42  {
    1.43  	mkdir -p $fs/usr/lib
    1.44 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.45 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.46  }