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

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents ca4a422cce07
children b27d8c263cba
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-smtp-ssl"
4 VERSION="1.04"
5 CATEGORY="development"
6 SHORT_DESC="SSL support for Net::SMTP."
7 MAINTAINER="rocky@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/pod/Net::SMTP::SSL"
10 REPOLOGY="perl:net-smtp-ssl"
12 SOURCE="Net-SMTP-SSL"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="https://www.cpan.org/modules/by-module/Net/$TARBALL"
16 DEPENDS="perl perl-authen-sasl perl-io-socket-ssl perl-mime-base64 perl-net-ssleay"
17 BUILD_DEPENDS="perl"
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | \
22 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 yes n | perl Makefile.PL &&
29 make &&
30 make install DESTDIR=$DESTDIR
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cook_copy_folders lib
37 }