wok-current annotate perl-pcsc/receipt @ rev 20997
Remove fuse-exfat, merged into exfat-utils
author | Richard Dunbar <mojo@slitaz.org> |
---|---|
date | Thu Mar 07 22:51:39 2019 -0500 (2019-03-07) |
parents | 7cdbcec1f857 |
children | 4363819c5f7a |
rev | line source |
---|---|
pankso@13658 | 1 # SliTaz package receipt. |
pankso@13658 | 2 |
pankso@13658 | 3 PACKAGE="perl-pcsc" |
pankso@13658 | 4 VERSION="1.4.12" |
pankso@13658 | 5 SOURCE="pcsc-perl" |
pankso@13658 | 6 CATEGORY="system-tools" |
pankso@13658 | 7 SHORT_DESC="Perl Module for PC/SC SmartCard access." |
pankso@13658 | 8 MAINTAINER="pankso@slitaz.org" |
pascal@14702 | 9 LICENSE="GPL" |
pankso@13658 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pankso@13658 | 11 WEB_SITE="http://ludovic.rousseau.free.fr/softwares/pcsc-perl/" |
pankso@13658 | 12 WGET_URL="http://ludovic.rousseau.free.fr/softwares/$SOURCE/$TARBALL" |
pankso@13658 | 13 |
pankso@13658 | 14 DEPENDS="perl pcsc-lite" |
pankso@13658 | 15 BUILD_DEPENDS="pcsc-lite-dev" |
pankso@13658 | 16 |
pankso@13658 | 17 # Rules to configure and make the package. |
pankso@13658 | 18 compile_rules() |
pankso@13658 | 19 { |
pankso@13658 | 20 cd $src |
pankso@13658 | 21 perl Makefile.PL && |
pankso@13658 | 22 make && make DESTDIR=$DESTDIR install |
pankso@13658 | 23 } |
pankso@13658 | 24 |
pankso@13658 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@13658 | 26 genpkg_rules() |
pankso@13658 | 27 { |
pankso@13658 | 28 mkdir -p $fs/usr |
pankso@13658 | 29 cp -a $install/usr/lib $fs/usr |
pankso@13658 | 30 } |
pankso@13658 | 31 |