diff options
Diffstat (limited to 'community/pcsclite/PKGBUILD')
-rw-r--r-- | community/pcsclite/PKGBUILD | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/community/pcsclite/PKGBUILD b/community/pcsclite/PKGBUILD deleted file mode 100644 index d46531006..000000000 --- a/community/pcsclite/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# $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 -} |