wok rev 21239
updated libidn and libidn-dev (1.21 -> 1.35)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Apr 11 14:17:59 2019 +0100 (2019-04-11) |
parents | d957986171e8 |
children | 31f88f776bbc |
files | libidn-dev/receipt libidn/receipt |
line diff
1.1 --- a/libidn-dev/receipt Thu Apr 11 14:05:05 2019 +0100 1.2 +++ b/libidn-dev/receipt Thu Apr 11 14:17:59 2019 +0100 1.3 @@ -1,23 +1,24 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libidn-dev" 1.7 -VERSION="1.21" 1.8 +VERSION="1.35" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Encode and decode internationalized domain names, dev files." 1.11 +SHORT_DESC="Encode and decode internationalized domain names, development files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL3 LGPL2.1" 1.14 -WEB_SITE="http://www.gnu.org/software/libidn/" 1.15 +WEB_SITE="https://www.gnu.org/software/libidn/" 1.16 + 1.17 WANTED="libidn" 1.18 +DEPENDS="libidn pkg-config" 1.19 + 1.20 HOST_ARCH="i486 arm" 1.21 1.22 -DEPENDS="libidn pkg-config" 1.23 - 1.24 # Rules to gen a SliTaz package suitable for Tazpkg. 1.25 genpkg_rules() 1.26 { 1.27 mkdir -p $fs/usr/lib 1.28 - cp -a $install/usr/include $fs/usr 1.29 - cp -a $install/usr/lib/*a $fs/usr/lib 1.30 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.31 + 1.32 + cp -a $install/usr/include $fs/usr 1.33 + cp -a $install/usr/lib/*a $fs/usr/lib 1.34 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.35 } 1.36 -
2.1 --- a/libidn/receipt Thu Apr 11 14:05:05 2019 +0100 2.2 +++ b/libidn/receipt Thu Apr 11 14:17:59 2019 +0100 2.3 @@ -1,22 +1,23 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libidn" 2.7 -VERSION="1.21" 2.8 +VERSION="1.35" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="Encode and decode internationalized domain names." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL3 LGPL2.1" 2.13 +WEB_SITE="https://www.gnu.org/software/$PACKAGE/" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WEB_SITE="http://www.gnu.org/software/$PACKAGE/" 2.17 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 2.18 + 2.19 HOST_ARCH="i486 arm" 2.20 2.21 # Rules to configure and make the package. 2.22 compile_rules() 2.23 { 2.24 - cd $src 2.25 ./configure $CONFIGURE_ARGS && 2.26 - make $MAKEFLAGS && 2.27 + make $MAKEFLAGS -j 1 && 2.28 make install 2.29 } 2.30 2.31 @@ -24,7 +25,7 @@ 2.32 genpkg_rules() 2.33 { 2.34 mkdir -p $fs/usr/lib 2.35 - cp -a $install/usr/bin $fs/usr 2.36 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.37 + 2.38 + cp -a $install/usr/bin $fs/usr 2.39 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.40 } 2.41 -