wok view nettle/receipt @ rev 21807

Up vlc (3.0.6) again
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Aug 16 08:34:09 2019 +0200 (2019-08-16)
parents f6439eea12df
children eeb3f2dda9df
line source
1 # SliTaz package receipt.
3 PACKAGE="nettle"
4 VERSION="3.4.1"
5 CATEGORY="security"
6 SHORT_DESC="A cryptographic library that is designed to fit easily in more or less any context."
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://www.lysator.liu.se/~nisse/nettle/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://www.lysator.liu.se/~nisse/archive/$TARBALL"
14 DEPENDS="gmp"
15 BUILD_DEPENDS="gcc83 gmp-dev"
17 HOST_ARCH="i486 arm"
19 # Handle cross compilation.
20 case "$ARCH" in
21 arm)
22 ARCH_ARGS="--enable-arm-neon" ;;
23 esac
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 export CC=gcc-83
29 export CXX=g++-83
31 ./configure \
32 --libdir=/usr/lib \
33 --enable-shared \
34 $CONFIGURE_ARGS ${ARCH_ARGS} &&
35 make &&
36 make install
37 }
39 # Rules to gen a SliTaz package suitable for Tazpkg.
40 genpkg_rules()
41 {
42 mkdir -p $fs/usr/lib
44 cp -a $install/usr/bin $fs/usr
45 cp -a $install/usr/lib/*.so* $fs/usr/lib
46 }