wok view nettle/receipt @ rev 11339

libpng: Make sure $PATCH is in $SOURCES_REPOSITORY.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Nov 26 03:56:37 2011 +0000 (2011-11-26)
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 }