mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-07 05:10:20 +00:00
pcsc-lite: add version 1.7.2
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
committed by
Koen Kooi
parent
88295fc7dd
commit
01e28b89e6
@@ -0,0 +1,32 @@
|
||||
#!/bin/sh
|
||||
DAEMON=/usr/sbin/pcscd
|
||||
NAME=pcscd
|
||||
DESC="PCSC Daemon"
|
||||
PIDFILE=/var/run/pcscd/pcscd.pid
|
||||
ARGS=""
|
||||
|
||||
test -f $DAEMON || exit 0
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
echo -n "Starting $DESC: $NAME"
|
||||
start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- $ARGS
|
||||
echo "."
|
||||
;;
|
||||
stop)
|
||||
echo -n "Stopping $DESC: $NAME"
|
||||
start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $DAEMON
|
||||
echo "."
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
sleep 1
|
||||
$0 start
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
||||
@@ -0,0 +1,38 @@
|
||||
DESCRIPTION = "PC/SC Lite smart card framework and applications"
|
||||
HOMEPAGE = "http://pcsclite.alioth.debian.org/"
|
||||
LICENSE = "BSD"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=c8e551349dc346258274f0007679e149"
|
||||
DEPENDS = "udev"
|
||||
PR = "r0"
|
||||
|
||||
SRC_URI = "https://alioth.debian.org/frs/download.php/3533/pcsc-lite-${PV}.tar.bz2 \
|
||||
file://pcscd.init "
|
||||
|
||||
SRC_URI[md5sum] = "47e7055cfc14399fdaa1b7a4aa06e5aa"
|
||||
SRC_URI[sha256sum] = "41f13d552eaa2c3978fbb6f2125e81903a0767011d999052fd1a6ee03880b398"
|
||||
|
||||
inherit autotools update-rc.d
|
||||
|
||||
EXTRA_OECONF = " \
|
||||
--disable-libusb \
|
||||
--enable-libudev \
|
||||
--enable-usbdropdir=${libdir}/pcsc/drivers \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/pcsc-lite-${PV}"
|
||||
|
||||
do_install() {
|
||||
oe_runmake DESTDIR="${D}" install
|
||||
install -d "${D}/${sysconfdir}/init.d"
|
||||
install -m 755 "${WORKDIR}/pcscd.init" "${D}/${sysconfdir}/init.d/pcscd"
|
||||
|
||||
# handle vars values
|
||||
sed -i 's,/usr/sbin,${sbindir},g;s,/var,${localstatedir},g' "${D}/${sysconfdir}/init.d/pcscd"
|
||||
}
|
||||
|
||||
PACKAGES =+ "${PN}-lib"
|
||||
|
||||
INITSCRIPT_NAME = "pcscd"
|
||||
INITSCRIPT_PARAMS = "defaults"
|
||||
|
||||
FILES_${PN}-lib = "${libdir}/lib*${SOLIBS}"
|
||||
Reference in New Issue
Block a user