wok view perl-pcsc/receipt @ rev 24920

updated mp (5.2.10 -> 5.58)
author Hans-G?nter Theisgen
date Sun Apr 10 07:48:27 2022 +0100 (2022-04-10)
parents 4363819c5f7a
children 72fb3028d8ce
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-pcsc"
4 VERSION="1.4.14"
5 CATEGORY="system-tools"
6 SHORT_DESC="Perl Module for PC/SC SmartCard access."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/release/pcsc-perl"
11 SOURCE="pcsc-perl"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="https://cpan.metacpan.org/authors/id/W/WH/WHOM/$TARBALL"
15 DEPENDS="pcsc-lite perl"
16 BUILD_DEPENDS="pcsc-lite-dev perl"
18 current_version()
19 {
20 wget -O - $WEB_SITE 2>/dev/null | \
21 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 perl Makefile.PL &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/lib $fs/usr
37 }