wok annotate perl-authen-sasl/receipt @ rev 24106

updated actionmailer, actionpack, activerecord and activesupport (6.0.2.1 -> 6.1.4.1)
author Hans-G?nter Theisgen
date Sat Sep 25 17:38:40 2021 +0100 (2021-09-25)
parents 3b568c55e60e
children
rev   line source
pascal@1667 1 # SliTaz package receipt.
pascal@1667 2
pascal@1667 3 PACKAGE="perl-authen-sasl"
Hans-G?nter@23290 4 VERSION="2.16"
pascal@1667 5 CATEGORY="development"
Hans-G?nter@23290 6 SHORT_DESC="Perl extension Authen::SASL."
pascal@1667 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14702 8 LICENSE="GPL"
Hans-G?nter@23290 9 WEB_SITE="https://metacpan.org/release/Authen-SASL"
Hans-G?nter@23290 10
Hans-G?nter@23290 11 SOURCE="Authen-SASL"
Hans-G?nter@23290 12 TARBALL="$SOURCE-$VERSION.tar.gz"
Hans-G?nter@23290 13 WGET_URL="https://www.cpan.org/modules/by-module/Authen/$TARBALL"
Hans-G?nter@23290 14
pascal@1667 15 DEPENDS="perl perl-digest-hmac perl-gssapi"
pascal@1667 16 BUILD_DEPENDS="perl perl-digest-hmac perl-gssapi"
pascal@1667 17
pascal@24102 18 current_version()
pascal@24102 19 {
pascal@24102 20 wget -O - $WEB_SITE 2>/dev/null | \
pascal@24102 21 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
pascal@24102 22 }
pascal@24102 23
pascal@1667 24 # Rules to configure and make the package.
pascal@1667 25 compile_rules()
pascal@1667 26 {
pascal@1667 27 perl Makefile.PL &&
pascal@1667 28 make &&
pascal@14702 29 make DESTDIR=$DESTDIR install
pascal@1667 30 }
pascal@1667 31
pascal@1667 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1667 33 genpkg_rules()
pascal@1667 34 {
pascal@1667 35 mkdir -p $fs/usr
Hans-G?nter@23290 36 cp -a $install/usr/lib $fs/usr
pascal@1667 37 }