diff options
author | Dirk 'Virk' Van Haerenborgh <vhdirk@gmail.com> | 2009-04-08 04:36:33 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-04-08 17:13:07 +0200 |
commit | 47ef4977b22aa4350a5987a314ffaa6019df3eca (patch) | |
tree | 02c57d3028280d863593647a4c6eaa56f91983ca /recipes/pcsc-lite | |
parent | ff30a9ba2de2841dffa0671d22f4a0433e68837d (diff) |
pcsc-lite: Update to version 1.5.2
No packaging changes.
Diffstat (limited to 'recipes/pcsc-lite')
-rw-r--r-- | recipes/pcsc-lite/pcsc-lite_1.5.2.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/recipes/pcsc-lite/pcsc-lite_1.5.2.bb b/recipes/pcsc-lite/pcsc-lite_1.5.2.bb new file mode 100644 index 0000000000..156e463bfc --- /dev/null +++ b/recipes/pcsc-lite/pcsc-lite_1.5.2.bb @@ -0,0 +1,30 @@ +DESCRIPTION = "PC/SC Lite smart card framework and applications" +HOMEPAGE = "http://pcsclite.alioth.debian.org/" +LICENSE = "BSD" + +DEPENDS = "hal" +RDEPENDS_${PN} = "hal" + +SRC_URI = "http://alioth.debian.org/download.php/2479/pcsc-lite-${PV}.tar.bz2 \ + file://pcscd.init " + +inherit autotools_stage update-rc.d + +INITSCRIPT_NAME = "pcscd" +INITSCRIPT_PARAMS = "defaults" + +EXTRA_OECONF = " \ + --enable-libhal \ + --disable-libusb \ + --enable-usbdropdir=${libdir}/pcsc/drivers \ + " + +do_install() { + oe_runmake DESTDIR="${D}" install + install -d "${D}/etc/init.d" + install -m 755 "${WORKDIR}/pcscd.init" "${D}/etc/init.d/pcscd" +} + +PACKAGES =+ "libpcsclite" + +FILES_libpcsclite = "${libdir}/libpcsclite.so.*" |