wok view nettle/receipt @ rev 12174

ppp: only hide Login/pass from users
author Dominique Corbex <domcox@slitaz.org>
date Sat Mar 24 09:29:55 2012 +0100 (2012-03-24)
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 }