wok-6.x rev 21277
updated libpng+apng and libpng+apng-dev (1.6.28 -> 1.6.36)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 12 17:35:29 2019 +0100 (2019-04-12) |
parents | 5b048e7c08a2 |
children | ccb0caebef6f |
files | libplist-dev/receipt libpng+apng-dev/receipt libpng+apng/receipt |
line diff
1.1 --- a/libplist-dev/receipt Fri Apr 12 17:28:16 2019 +0100 1.2 +++ b/libplist-dev/receipt Fri Apr 12 17:35:29 2019 +0100 1.3 @@ -9,7 +9,7 @@ 1.4 WEB_SITE="https://libimobiledevice.org/" 1.5 1.6 WANTED="libplist" 1.7 -DEPENDS="libplist pkg-config" 1.8 +DEPENDS="libplist pkg-config" 1.9 1.10 # Rules to gen a SliTaz package suitable for Tazpkg. 1.11 genpkg_rules()
2.1 --- a/libpng+apng-dev/receipt Fri Apr 12 17:28:16 2019 +0100 2.2 +++ b/libpng+apng-dev/receipt Fri Apr 12 17:35:29 2019 +0100 2.3 @@ -1,26 +1,29 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libpng+apng-dev" 2.7 -VERSION="1.6.28" 2.8 +VERSION="1.6.36" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="Development files for libpng (with APNG support)" 2.11 +SHORT_DESC="Development files for libpng (with APNG support)." 2.12 MAINTAINER="al.bobylev@gmail.com" 2.13 LICENSE="zlib/libpng" 2.14 WEB_SITE="http://libpng.org/pub/png/libpng.html" 2.15 -HOST_ARCH="i486 arm" 2.16 2.17 WANTED="libpng+apng" 2.18 DEPENDS="libpng+apng pkg-config" 2.19 2.20 +HOST_ARCH="i486 arm" 2.21 + 2.22 # Rules to gen a SliTaz package suitable for Tazpkg. 2.23 genpkg_rules() 2.24 { 2.25 mkdir -p \ 2.26 $fs/usr/lib \ 2.27 $fs/usr/share/licenses 2.28 - cp -a $install/usr/bin $fs/usr 2.29 - cp -a $install/usr/include $fs/usr 2.30 - cp -a $install/usr/lib/*.la $fs/usr/lib 2.31 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 2.32 - cp -a $src/LICENSE $fs/usr/share/licenses/${PACKAGE%-dev}.txt 2.33 + 2.34 + cp -a $install/usr/bin $fs/usr 2.35 + cp -a $install/usr/include $fs/usr 2.36 + cp -a $install/usr/lib/*.la $fs/usr/lib 2.37 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 2.38 + cp -a $src/LICENSE \ 2.39 + $fs/usr/share/licenses/${PACKAGE%-dev}.txt 2.40 }
3.1 --- a/libpng+apng/receipt Fri Apr 12 17:28:16 2019 +0100 3.2 +++ b/libpng+apng/receipt Fri Apr 12 17:35:29 2019 +0100 3.3 @@ -2,16 +2,16 @@ 3.4 3.5 PACKAGE="libpng+apng" 3.6 SOURCE="libpng" 3.7 -VERSION="1.6.28" 3.8 +VERSION="1.6.36" 3.9 SERIES="libpng16" 3.10 CATEGORY="x-window" 3.11 -SHORT_DESC="Loads and saves PNG files (with APNG support)" 3.12 +SHORT_DESC="Loads and saves PNG files (with APNG support)." 3.13 MAINTAINER="al.bobylev@gmail.com" 3.14 LICENSE="zlib/libpng" 3.15 WEB_SITE="http://www.libpng.org/pub/png/libpng.html" 3.16 + 3.17 TARBALL="$SOURCE-$VERSION.tar.xz" 3.18 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" 3.19 -HOST_ARCH="i486 arm" 3.20 3.21 PATCH="$SOURCE-$VERSION-apng.patch.gz" 3.22 PATCH_URL="$SF_MIRROR/apng/$SOURCE/$SERIES/$PATCH" 3.23 @@ -19,16 +19,20 @@ 3.24 DEPENDS="zlib" 3.25 BUILD_DEPENDS="gawk zlib-dev" 3.26 3.27 +HOST_ARCH="i486 arm" 3.28 + 3.29 # Rules to configure and make the package. 3.30 compile_rules() 3.31 { 3.32 [ -s "$SRC/$PATCH" ] || wget -O "$SRC/$PATCH" $PATCH_URL 3.33 gzip -cd $SRC/$PATCH | patch -p0 3.34 - ./configure \ 3.35 - --prefix=/usr \ 3.36 - --disable-static \ 3.37 + 3.38 + ./configure \ 3.39 + --prefix=/usr \ 3.40 + --disable-static \ 3.41 $CONFIGURE_ARGS && 3.42 - make && 3.43 + make -j 1 && 3.44 + 3.45 case "$ARCH" in 3.46 arm*) 3.47 make DESTDIR=$DESTDIR install ;;