summaryrefslogtreecommitdiff
path: root/community/ccid
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-10-05 01:28:55 -0700
committerroot <root@rshg054.dnsready.net>2013-10-05 01:28:55 -0700
commit9478c3c735c37ebdda0eb99126f5925790fb3e55 (patch)
tree15eefbfb45c57203f177ece35f81ae6fe4cf1cdb /community/ccid
parenta1e8649c27451ac75f05b9b520d52b78e9f2913d (diff)
Sat Oct 5 01:28:41 PDT 2013
Diffstat (limited to 'community/ccid')
-rw-r--r--community/ccid/PKGBUILD10
1 files changed, 7 insertions, 3 deletions
diff --git a/community/ccid/PKGBUILD b/community/ccid/PKGBUILD
index b39649246..c2d95dd32 100644
--- a/community/ccid/PKGBUILD
+++ b/community/ccid/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 98011 2013-10-03 16:17:48Z giovanni $
+# $Id: PKGBUILD 98050 2013-10-04 16:09:59Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Daniel Plaza <daniel.plaza.espi@gmail.com>
pkgname=ccid
pkgver=1.4.12
-pkgrel=1
+pkgrel=2
pkgdesc="A generic USB Chip/Smart Card Interface Devices driver"
arch=('i686' 'x86_64')
url="http://pcsclite.alioth.debian.org/ccid.html"
@@ -20,7 +20,8 @@ build() {
./configure --prefix=/usr \
--sysconfdir=/etc \
- --enable-twinserial
+ --enable-twinserial \
+ --enable-serialconfdir=/etc/reader.conf.d
make
}
@@ -28,4 +29,7 @@ package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
+ # move the configuration file in /etc and create a symbolic link
+ mv "${pkgdir}/usr/lib/pcsc/drivers/ifd-ccid.bundle/Contents/Info.plist" "${pkgdir}/etc/libccid_Info.plist"
+ ln -s /etc/libccid_Info.plist ${pkgdir}/usr/lib/pcsc/drivers/ifd-ccid.bundle/Contents/Info.plist
}