wok view nettle/receipt @ rev 12654

nitrogen, opencpn, pcmanfm2: add LDFLAGS for Binutils 2.22
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 30 10:06:51 2012 +0200 (2012-04-30)
parents
children 2709c1179e44
line source
1 # SliTaz package receipt.
3 PACKAGE="nettle"
4 VERSION="2.4"
5 CATEGORY="system-tools"
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 DEPENDS="gmp"
9 BUILD_DEPENDS="gmp-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.lysator.liu.se/~nisse/nettle"
12 WGET_URL="http://www.lysator.liu.se/~nisse/archive/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --enable-shared \
20 $CONFIGURE_ARGS &&
21 make $MAKEFLAGS && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }