wok annotate perl-mime-lite/receipt @ rev 24225

updated perl-io-socket-ssl (2.068 -> 2.073)
author Hans-G?nter Theisgen
date Fri Dec 31 17:41:39 2021 +0100 (2021-12-31)
parents 8df488bf2306
children 796762f3150a
rev   line source
pascal@14698 1 # SliTaz package receipt.
pascal@14698 2
pascal@14698 3 PACKAGE="perl-mime-lite"
Hans-G?nter@23369 4 VERSION="3.031"
pascal@14698 5 CATEGORY="development"
Hans-G?nter@23369 6 SHORT_DESC="Perl extension MIME::Lite."
pascal@14698 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14702 8 LICENSE="GPL"
Hans-G?nter@23369 9 WEB_SITE="https://metacpan.org/release/MIME-Lite"
Hans-G?nter@23369 10
Hans-G?nter@23369 11 SOURCE="MIME-Lite"
Hans-G?nter@23369 12 TARBALL="$SOURCE-$VERSION.tar.gz"
Hans-G?nter@23369 13 WGET_URL="https://www.cpan.org/modules/by-module/MIME/$TARBALL"
Hans-G?nter@23369 14
pascal@14698 15 DEPENDS="perl perl-mailtools perl-mime-types"
pascal@14698 16 BUILD_DEPENDS="perl perl-mailtools perl-mime-types"
pascal@14698 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@14698 24 # Rules to configure and make the package.
pascal@14698 25 compile_rules()
pascal@14698 26 {
pascal@14698 27 perl Makefile.PL &&
pascal@14698 28 make &&
pascal@14698 29 make install DESTDIR=$DESTDIR
pascal@14698 30 }
pascal@14698 31
pascal@14698 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14698 33 genpkg_rules()
pascal@14698 34 {
pascal@14698 35 mkdir -p $fs/usr
Hans-G?nter@23369 36 cp -a $install/usr/lib $fs/usr
pascal@14698 37 }