wok view nettle/receipt @ rev 16250

ARM add: libtasn1 & nettle
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 03 23:45:30 2014 +0200 (2014-04-03)
parents 3765f181a6d5
children a1fff9cb2cd5
line source
1 # SliTaz package receipt.
3 PACKAGE="nettle"
4 VERSION="2.5"
5 CATEGORY="security"
6 SHORT_DESC="Nettle is 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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.lysator.liu.se/~nisse/nettle/"
11 WGET_URL="http://www.lysator.liu.se/~nisse/archive/$TARBALL"
12 HOST_ARCH="i486 arm"
14 #DEPENDS="gmp"
15 #BUILD_DEPENDS="gmp-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --libdir=/usr/lib \
22 --enable-shared \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }