wok rev 23236
updated nettle and nettle-dev (3.4.1 -> 3.5.1)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 24 17:21:46 2020 +0100 (2020-03-24) |
parents | 4e6875d4e582 |
children | d25a28bf6b6c |
files | nettle-dev/receipt nettle/receipt |
line diff
1.1 --- a/nettle-dev/receipt Tue Mar 24 17:10:02 2020 +0100 1.2 +++ b/nettle-dev/receipt Tue Mar 24 17:21:46 2020 +0100 1.3 @@ -1,15 +1,15 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="nettle-dev" 1.7 -VERSION="3.4.1" 1.8 +VERSION="3.5.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Development files for nettle." 1.11 MAINTAINER="devl547@gmail.com" 1.12 LICENSE="LGPL2.1" 1.13 WEB_SITE="https://www.lysator.liu.se/~nisse/nettle/" 1.14 1.15 +DEPENDS="nettle pkg-config" 1.16 WANTED="nettle" 1.17 -DEPENDS="nettle pkg-config" 1.18 1.19 HOST_ARCH="i486 arm" 1.20
2.1 --- a/nettle/receipt Tue Mar 24 17:10:02 2020 +0100 2.2 +++ b/nettle/receipt Tue Mar 24 17:21:46 2020 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="nettle" 2.7 -VERSION="3.4.1" 2.8 +VERSION="3.5.1" 2.9 CATEGORY="security" 2.10 SHORT_DESC="A cryptographic library that is designed to fit easily in more or less any context." 2.11 MAINTAINER="devl547@gmail.com" 2.12 @@ -9,9 +9,9 @@ 2.13 WEB_SITE="https://www.lysator.liu.se/~nisse/nettle/" 2.14 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WGET_URL="https://www.lysator.liu.se/~nisse/archive/$TARBALL" 2.17 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 2.18 2.19 -DEPENDS="gmp" 2.20 +DEPENDS="gcc83-lib-base gmp" 2.21 BUILD_DEPENDS="gcc83 gmp-dev" 2.22 2.23 HOST_ARCH="i486 arm" 2.24 @@ -25,13 +25,13 @@ 2.25 # Rules to configure and make the package. 2.26 compile_rules() 2.27 { 2.28 - export CC=gcc-83 2.29 - export CXX=g++-83 2.30 - 2.31 ./configure \ 2.32 + CC=gcc-83 \ 2.33 + CXX=g++-83 \ 2.34 --libdir=/usr/lib \ 2.35 --enable-shared \ 2.36 - $CONFIGURE_ARGS ${ARCH_ARGS} && 2.37 + $CONFIGURE_ARGS \ 2.38 + ${ARCH_ARGS} && 2.39 make && 2.40 make install 2.41 }