wok view perl-crypt-ssleay/receipt @ rev 24975

Update some wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 02 16:22:04 2022 +0000 (2022-05-02)
parents ca4a422cce07
children
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-crypt-ssleay"
4 VERSION="0.58"
5 CATEGORY="development"
6 SHORT_DESC="Crypt::SSLeay module is a Perl extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 DEPENDS="perl"
10 BUILD_DEPENDS="perl"
11 SOURCE="Crypt-SSLeay"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="https://metacpan.org/dist/Crypt-SSLeay"
14 WGET_URL="https://cpan.metacpan.org/authors/id/N/NA/NANIS/$TARBALL"
16 DEPENDS="openssl"
17 BUILD_DEPENDS="openssl-dev"
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 sed -i 's|uname -m|echo i486|' Makefile.PL
29 yes '' | perl Makefile.PL --default &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
38 cp -a $install/usr/lib $fs/usr
39 }