diff options
-rw-r--r-- | conf/checksums.ini | 11 | ||||
-rw-r--r-- | recipes/pcsc-lite/pcsc-lite_1.5.2.bb | 30 |
2 files changed, 37 insertions, 4 deletions
diff --git a/conf/checksums.ini b/conf/checksums.ini index 6c94287f4e..2e8e264857 100644 --- a/conf/checksums.ini +++ b/conf/checksums.ini @@ -18298,6 +18298,10 @@ sha256=362e4b4473f2f7a3bfa28ea73e80ec00a2fe525a1aceb5f66e1c528a900bd735 md5=b97d3a725ab93662adf09acfbc49efeb sha256=56fc9e6324539537324b071e5b51c3388df9bfa92fb7e210b989b463122fc333 +[https://alioth.debian.org/frs/download.php/2795/pcsc-lite-1.5.2.tar.bz2] +md5=d7d466621bec39354351f09349f6374c +sha256=a0c11b0b5cc46d4c4ec499b875cfdc4e766fdf12fe2f6ea635e1b11ab7b8821e + [http://handhelds.org/~zecke/oe_packages/pdamaze_V1.0.0.tar.gz] md5=bf27dd51fe03c8b475080b74de043a13 sha256=99d6bc6b360baabd6044e8883d467cc6ed7955f9ab66d8f87f61e3cc757fb97a @@ -23466,14 +23470,13 @@ sha256=c762525fdbf5f5dd32c6c950f2a63d8c1b15ec3dc7afca5d2dc3dbd1b129a00d md5=66480128b9dabcced2e4c8db3e60fa50 sha256=6c5bfb2edae5c289233b6cd65393bb7414a2d30ad4d1239c207a659a4232d91a -[http://www.ibiblio.org/pub/Linux/system/daemons/watchdog/watchdog_5.3.1.tar.gz] -md5=ba97ddce396bfccd8d409bc3141d7ef4 -sha256=b7bf9feeedea26d7e06935369a1a556089426e94f9ead946018526c96cd9b12e - [http://www.ibiblio.org/pub/Linux/system/daemons/watchdog/watchdog-5.6.tar.gz] md5=6df285569dd1d85528b983c98c9b2b7c sha256=a2c7d6726e092315dbb047211b754528e4532521678a30e16f60a31bb86a7f74 +[http://www.ibiblio.org/pub/Linux/system/daemons/watchdog/watchdog_5.3.1.tar.gz] +md5=ba97ddce396bfccd8d409bc3141d7ef4 +sha256=b7bf9feeedea26d7e06935369a1a556089426e94f9ead946018526c96cd9b12e [http://downloads.sourceforge.net/wbxmllib/wbxml2-0.9.0-src.tar.gz] md5=3f9b5bf104ec523b8eebe69f93919ded 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.*" |