Date: Monday, October 22, 2018 @ 19:21:09 Author: archange Revision: 398467
Initial addition of acsccid to [community] Added: acsccid/ acsccid/repos/ acsccid/trunk/ acsccid/trunk/PKGBUILD ----------+ PKGBUILD | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) Added: acsccid/trunk/PKGBUILD =================================================================== --- acsccid/trunk/PKGBUILD (rev 0) +++ acsccid/trunk/PKGBUILD 2018-10-22 19:21:09 UTC (rev 398467) @@ -0,0 +1,24 @@ +# Maintainer: Bruno Pagani <[email protected]> + +pkgname=acsccid +pkgver=1.1.5 +pkgrel=1 +pkgdesc="PC/SC driver that supports ACS CCID smart card readers." +arch=('x86_64') +url="http://acsccid.sourceforge.net/" +license=('LGPL2.1') +depends=('pcsclite' 'libusb-compat') +source=("https://downloads.sourceforge.net/acsccid/${pkgname}-${pkgver}.tar.bz2") +sha256sums=('e7a81d9f9a49276a7e8e3ddf8e4633ce444d69ca1ce2e580c4307d10847691c9') + +build() +{ + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install +}
