diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/pcsclite | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/pcsclite')
-rw-r--r-- | community/pcsclite/PKGBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/community/pcsclite/PKGBUILD b/community/pcsclite/PKGBUILD new file mode 100644 index 000000000..d46531006 --- /dev/null +++ b/community/pcsclite/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 91101 2013-05-19 13:42:04Z giovanni $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Daniel Plaza <daniel.plaza.espi@gmail.com> + +pkgname=pcsclite +pkgver=1.8.8 +pkgrel=3 +pkgdesc="PC/SC Architecture smartcard middleware library" +arch=('i686' 'x86_64') +url="https://alioth.debian.org/projects/pcsclite/" +license=('BSD') +depends=('python2' 'systemd') +makedepends=('pkg-config') +options=('!libtool' '!docs') +source=("https://alioth.debian.org/frs/download.php/3862/pcsc-lite-${pkgver}.tar.bz2") +md5sums=('069dc875a2ae2d85a2ebceac73252c0a') + +build() { + cd "${srcdir}/pcsc-lite-${pkgver}" + + sed -i -e "s:python:python2:g" src/spy/pcsc-spy + + ./configure --prefix=/usr \ + --sbindir=/usr/bin \ + --enable-libudev \ + --sysconfdir=/etc \ + --enable-ipcdir=/run/pcscd \ + --enable-usbdropdir=/usr/lib/pcsc/drivers \ + --with-systemdsystemunitdir=/usr/lib/systemd/system + + make +} + +package() { + cd "${srcdir}/pcsc-lite-${pkgver}" + + make DESTDIR="${pkgdir}" install + + install -D -m644 ${srcdir}/pcsc-lite-${pkgver}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE + install -d ${pkgdir}/usr/lib/pcsc/drivers +} |