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

Add tix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 04 08:58:28 2014 +0100 (2014-11-04)
parents f0263c56ea4a
children 20661c276bcf
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 LICENSE="GPL"
9 DEPENDS="perl"
10 BUILD_DEPENDS="perl"
11 SOURCE="Net-SSLeay"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="http://cpan.org/"
14 WGET_URL="http://search.cpan.org/CPAN/authors/id/M/MI/MIKEM/$TARBALL"
16 DEPENDS="openssl"
17 BUILD_DEPENDS="openssl-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 yes '' | perl Makefile.PL &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/lib $fs/usr
33 }