diff options
author | root <root@rshg054.dnsready.net> | 2012-05-28 17:43:57 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-05-28 17:43:57 +0000 |
commit | 483f7de4ab6a706517279a24d2efc969f4a1996d (patch) | |
tree | 128a7513d3e42c4d8812b5fd11a4afb116399762 /community-testing/pcsc-perl/PKGBUILD | |
parent | 89dd7b5f30d48c708092a71b1c8285090fe91505 (diff) |
Mon May 28 17:43:57 UTC 2012
Diffstat (limited to 'community-testing/pcsc-perl/PKGBUILD')
-rw-r--r-- | community-testing/pcsc-perl/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community-testing/pcsc-perl/PKGBUILD b/community-testing/pcsc-perl/PKGBUILD new file mode 100644 index 000000000..7d4f3229c --- /dev/null +++ b/community-testing/pcsc-perl/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 71370 2012-05-27 07:39:18Z bluewind $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: neuromante <lorenzo.nizzi.grifi@gmail.com> +# Contributor: marc0s <marc0s@fsfe.org> + +pkgname=pcsc-perl +pkgver=1.4.12 +pkgrel=3 +pkgdesc="A Perl Module for PC/SC SmartCard access" +arch=('i686' 'x86_64') +url="http://ludovic.rousseau.free.fr/softwares/pcsc-perl/" +license=('GPL' 'PerlArtistic') +depends=('pcsclite' 'perl') +makedepends=('pkgconfig') +options=('!emptydirs') +source=("http://ludovic.rousseau.free.fr/softwares/${pkgname}/${pkgname}-${pkgver}.tar.bz2") +md5sums=('f34c5ab748815bf0b2e571362b4f8121') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # install module in vendor directories. + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install +} |