44 lines
1.3 KiB
Bash
44 lines
1.3 KiB
Bash
# Template file for 'pcsc-ccid'
|
|
pkgname=pcsc-ccid
|
|
version=1.4.20
|
|
revision=1
|
|
wrksrc=ccid-${version}
|
|
build_style=gnu-configure
|
|
configure_args="--enable-udev"
|
|
hostmakedepends="pkg-config perl"
|
|
makedepends="pcsclite-devel libudev-devel libusb-compat-devel"
|
|
short_desc="PC/SC driver to support CCID compliant readers"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
license="LGPL-2.1"
|
|
homepage="http://pcsclite.alioth.debian.org/ccid.html"
|
|
distfiles="${DEBIAN_SITE}/main/c/ccid/ccid_${version}.orig.tar.bz2"
|
|
checksum=400cb865bb63eed6d7668b2d971cb4644038b9b7a6cda121450d0c6cf6251cbc
|
|
|
|
post_install() {
|
|
vinstall src/92_pcscd_ccid.rules 644 usr/lib/udev/rules.d/
|
|
vdoc readers/supported_readers.txt
|
|
vdoc README
|
|
}
|
|
|
|
pcsc-ccid-contrib_package() {
|
|
short_desc+=" - contributions"
|
|
depends="${sourcpkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vbin contrib/Kobil_mIDentity_switch/Kobil_mIDentity_switch
|
|
vman contrib/Kobil_mIDentity_switch/Kobil_mIDentity_switch.8
|
|
vbin contrib/RSA_SecurID/RSA_SecurID_getpasswd
|
|
vman contrib/RSA_SecurID/RSA_SecurID_getpasswd.1
|
|
}
|
|
}
|
|
pcsc-ccid-examples_package() {
|
|
short_desc+=" - examples"
|
|
depends="${sourcpkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmkdir usr/share/${sourcepkg}/examples
|
|
rm examples/*.o
|
|
for f in $(find ${wrksrc}/examples -maxdepth 1 -type f); do
|
|
vcopy $f usr/share/${sourcepkg}/examples
|
|
done
|
|
}
|
|
}
|
|
|