wok view perl-smtp-ssl/receipt @ rev 24133

Up tazinst (115)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 23 15:17:56 2021 +0000 (2021-10-23)
parents 20661c276bcf
children 1e0249731b58
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-smtp-ssl"
4 VERSION="1.01"
5 CATEGORY="development"
6 SHORT_DESC="SSL support for Net::SMTP."
7 MAINTAINER="rocky@slitaz.org"
8 LICENSE="GPL"
9 DEPENDS="perl perl-io-socket-ssl perl-net-ssleay perl-mime-base64 perl-authen-sasl"
10 BUILD_DEPENDS="perl"
11 SOURCE="Net-SMTP-SSL"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="https://metacpan.org/dist/Net-SMTP-SSL"
14 WGET_URL="https://metacpan.org/CPAN/authors/id/C/CW/CWEST/$TARBALL"
16 current_version()
17 {
18 wget -O - $WEB_SITE 2>/dev/null | \
19 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
20 }
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 cd $src
26 yes n | perl Makefile.PL &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/lib $fs/usr
36 }