wok view nettle/receipt @ rev 23597

flam3, jpeg-dev, x11vnc: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 09 09:01:09 2020 +0000 (2020-04-09)
parents 163f71af5751
children ee53899c6189
line source
1 # SliTaz package receipt.
3 PACKAGE="nettle"
4 VERSION="3.5.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="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="gcc83-lib-base 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 ./configure \
29 CC=gcc-83 \
30 CXX=g++-83 \
31 --libdir=/usr/lib \
32 --enable-shared \
33 $CONFIGURE_ARGS \
34 ${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 }