# HG changeset patch # User Hans-G?nter Theisgen # Date 1555086929 -3600 # Node ID 516554f6d045ea6ea3fc2e5518bfa98502c826c7 # Parent 5b048e7c08a2371c68f6a7292dbfcd483db7c8b1 updated libpng+apng and libpng+apng-dev (1.6.28 -> 1.6.36) diff -r 5b048e7c08a2 -r 516554f6d045 libplist-dev/receipt --- a/libplist-dev/receipt Fri Apr 12 17:28:16 2019 +0100 +++ b/libplist-dev/receipt Fri Apr 12 17:35:29 2019 +0100 @@ -9,7 +9,7 @@ WEB_SITE="https://libimobiledevice.org/" WANTED="libplist" -DEPENDS="libplist pkg-config" +DEPENDS="libplist pkg-config" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() diff -r 5b048e7c08a2 -r 516554f6d045 libpng+apng-dev/receipt --- a/libpng+apng-dev/receipt Fri Apr 12 17:28:16 2019 +0100 +++ b/libpng+apng-dev/receipt Fri Apr 12 17:35:29 2019 +0100 @@ -1,26 +1,29 @@ # SliTaz package receipt. PACKAGE="libpng+apng-dev" -VERSION="1.6.28" +VERSION="1.6.36" CATEGORY="development" -SHORT_DESC="Development files for libpng (with APNG support)" +SHORT_DESC="Development files for libpng (with APNG support)." MAINTAINER="al.bobylev@gmail.com" LICENSE="zlib/libpng" WEB_SITE="http://libpng.org/pub/png/libpng.html" -HOST_ARCH="i486 arm" WANTED="libpng+apng" DEPENDS="libpng+apng pkg-config" +HOST_ARCH="i486 arm" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p \ $fs/usr/lib \ $fs/usr/share/licenses - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.la $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $src/LICENSE $fs/usr/share/licenses/${PACKAGE%-dev}.txt + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.la $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $src/LICENSE \ + $fs/usr/share/licenses/${PACKAGE%-dev}.txt } diff -r 5b048e7c08a2 -r 516554f6d045 libpng+apng/receipt --- a/libpng+apng/receipt Fri Apr 12 17:28:16 2019 +0100 +++ b/libpng+apng/receipt Fri Apr 12 17:35:29 2019 +0100 @@ -2,16 +2,16 @@ PACKAGE="libpng+apng" SOURCE="libpng" -VERSION="1.6.28" +VERSION="1.6.36" SERIES="libpng16" CATEGORY="x-window" -SHORT_DESC="Loads and saves PNG files (with APNG support)" +SHORT_DESC="Loads and saves PNG files (with APNG support)." MAINTAINER="al.bobylev@gmail.com" LICENSE="zlib/libpng" WEB_SITE="http://www.libpng.org/pub/png/libpng.html" + TARBALL="$SOURCE-$VERSION.tar.xz" WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" -HOST_ARCH="i486 arm" PATCH="$SOURCE-$VERSION-apng.patch.gz" PATCH_URL="$SF_MIRROR/apng/$SOURCE/$SERIES/$PATCH" @@ -19,16 +19,20 @@ DEPENDS="zlib" BUILD_DEPENDS="gawk zlib-dev" +HOST_ARCH="i486 arm" + # Rules to configure and make the package. compile_rules() { [ -s "$SRC/$PATCH" ] || wget -O "$SRC/$PATCH" $PATCH_URL gzip -cd $SRC/$PATCH | patch -p0 - ./configure \ - --prefix=/usr \ - --disable-static \ + + ./configure \ + --prefix=/usr \ + --disable-static \ $CONFIGURE_ARGS && - make && + make -j 1 && + case "$ARCH" in arm*) make DESTDIR=$DESTDIR install ;;