# HG changeset patch # User Hans-G?nter Theisgen # Date 1645547990 -3600 # Node ID 83d03a36ee6b98224cb51fd6c6c351de3516886f # Parent d77ab883a8b31dcb3826da86e7e2f8691d53ecd3 updated exempi and exempi-dev (2.5.1 -> 2.6.1) diff -r d77ab883a8b3 -r 83d03a36ee6b exempi-dev/receipt --- a/exempi-dev/receipt Tue Feb 22 16:15:28 2022 +0000 +++ b/exempi-dev/receipt Tue Feb 22 17:39:50 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="exempi-dev" -VERSION="2.5.1" +VERSION="2.6.1" CATEGORY="libdevel" SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform) - development files." MAINTAINER="yuripourre@gmail.com" @@ -14,10 +14,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - mkdir -p $fs/usr/include - - cp -a $install/usr/lib/*.la $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include/* $fs/usr/include + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r d77ab883a8b3 -r 83d03a36ee6b exempi/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/exempi/description.txt Tue Feb 22 17:39:50 2022 +0100 @@ -0,0 +1,9 @@ +Exempi is an implementation of XMP. +Version 2.x is based on Adobe XMP SDK and released under a BSD-style +license like Adobe's. +The 3 clause BSD (aka New-BSD) license is compatible with GPL. +The licensing is kept identical in order to allow two-way merging of +the code (ie sending our change to the XMP SDK to Adobe for integration). + +The API is C based and means to be used from any language and be easier +to maintain ABI stability. diff -r d77ab883a8b3 -r 83d03a36ee6b exempi/receipt --- a/exempi/receipt Tue Feb 22 16:15:28 2022 +0000 +++ b/exempi/receipt Tue Feb 22 17:39:50 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="exempi" -VERSION="2.5.1" +VERSION="2.6.1" CATEGORY="utilities" LICENSE="GPL3" SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform)." @@ -26,13 +26,12 @@ --prefix=/usr \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # 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/bin $fs/usr + cook_copy_folders bin + cook_copy_files *.so* }