wok view perl-net-ssleay/receipt @ rev 14060

Up: slitaz-tools-boxes (5.3)
author Dominique Corbex <domcox@slitaz.org>
date Wed Feb 20 10:51:55 2013 +0100 (2013-02-20)
parents d732fbc919a6
children 2d12ebd38be4
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-net-ssleay"
4 VERSION="1.42"
5 CATEGORY="development"
6 SHORT_DESC="Net::SSLeay module is a Perl extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="perl"
9 BUILD_DEPENDS="perl"
10 SOURCE="Net-SSLeay"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://cpan.org/"
13 WGET_URL="http://search.cpan.org/CPAN/authors/id/M/MI/MIKEM/$TARBALL"
15 DEPENDS="openssl"
16 BUILD_DEPENDS="openssl-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 yes '' | perl Makefile.PL &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/lib $fs/usr
32 }