wok rev 24526

updated exempi and exempi-dev (2.5.1 -> 2.6.1)
author Hans-G?nter Theisgen
date Tue Feb 22 17:39:50 2022 +0100 (2022-02-22)
parents d77ab883a8b3
children a4e0f9035e33
files exempi-dev/receipt exempi/description.txt exempi/receipt
line diff
     1.1 --- a/exempi-dev/receipt	Tue Feb 22 16:15:28 2022 +0000
     1.2 +++ b/exempi-dev/receipt	Tue Feb 22 17:39:50 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="exempi-dev"
     1.7 -VERSION="2.5.1"
     1.8 +VERSION="2.6.1"
     1.9  CATEGORY="libdevel"
    1.10  SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform) - development files."
    1.11  MAINTAINER="yuripourre@gmail.com"
    1.12 @@ -14,10 +14,7 @@
    1.13  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.14  genpkg_rules()
    1.15  {
    1.16 -	mkdir -p $fs/usr/lib
    1.17 -	mkdir -p $fs/usr/include
    1.18 -
    1.19 -	cp -a $install/usr/lib/*.la		$fs/usr/lib
    1.20 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.21 -	cp -a $install/usr/include/*		$fs/usr/include
    1.22 +	cook_copy_folders	include
    1.23 +	cook_copy_folders	pkgconfig
    1.24 +	cook_copy_files		*.*a
    1.25  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/exempi/description.txt	Tue Feb 22 17:39:50 2022 +0100
     2.3 @@ -0,0 +1,9 @@
     2.4 +Exempi is an implementation of XMP.
     2.5 +Version 2.x is based on Adobe XMP SDK and released under a BSD-style
     2.6 +license like Adobe's.
     2.7 +The 3 clause BSD (aka New-BSD) license is compatible with GPL.
     2.8 +The licensing is kept identical in order to allow two-way merging of
     2.9 +the code (ie sending our change to the XMP SDK to Adobe for integration).
    2.10 +
    2.11 +The API is C based and means to be used from any language and be easier
    2.12 +to maintain ABI stability.
     3.1 --- a/exempi/receipt	Tue Feb 22 16:15:28 2022 +0000
     3.2 +++ b/exempi/receipt	Tue Feb 22 17:39:50 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="exempi"
     3.7 -VERSION="2.5.1"
     3.8 +VERSION="2.6.1"
     3.9  CATEGORY="utilities"
    3.10  LICENSE="GPL3"
    3.11  SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform)."
    3.12 @@ -26,13 +26,12 @@
    3.13  		--prefix=/usr	\
    3.14  		$CONFIGURE_ARGS &&
    3.15  	make &&
    3.16 -	make DESTDIR=$DESTDIR install
    3.17 +	make install DESTDIR=$DESTDIR
    3.18  }
    3.19  
    3.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.21  genpkg_rules()
    3.22  {
    3.23 -	mkdir -p $fs/usr/lib
    3.24 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.25 -	cp -a $install/usr/bin		$fs/usr
    3.26 +	cook_copy_folders	bin
    3.27 +	cook_copy_files		*.so*
    3.28  }