diff options
Diffstat (limited to 'meta/recipes-connectivity/neard/neard.inc')
| -rw-r--r-- | meta/recipes-connectivity/neard/neard.inc | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/neard/neard.inc b/meta/recipes-connectivity/neard/neard.inc new file mode 100644 index 0000000000..7cccbdc9fb --- /dev/null +++ b/meta/recipes-connectivity/neard/neard.inc | |||
| @@ -0,0 +1,59 @@ | |||
| 1 | SUMMARY = "Linux NFC daemon" | ||
| 2 | DESCRIPTION = "A daemon for the Linux Near Field Communication stack" | ||
| 3 | HOMEPAGE = "http://01.org/linux-nfc" | ||
| 4 | LICENSE = "GPLv2" | ||
| 5 | |||
| 6 | DEPENDS = "dbus glib-2.0 libnl" | ||
| 7 | |||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \ | ||
| 9 | file://src/near.h;beginline=1;endline=20;md5=358e4deefef251a4761e1ffacc965d13 \ | ||
| 10 | " | ||
| 11 | |||
| 12 | inherit autotools pkgconfig systemd update-rc.d | ||
| 13 | |||
| 14 | EXTRA_OECONF += "--enable-tools" | ||
| 15 | |||
| 16 | do_install() { | ||
| 17 | oe_runmake DESTDIR=${D} libexecdir=${libexecdir} install | ||
| 18 | } | ||
| 19 | |||
| 20 | # This would copy neard start-stop shell and test scripts | ||
| 21 | do_install_append() { | ||
| 22 | if ${@base_contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | ||
| 23 | install -d ${D}${sysconfdir}/init.d/ | ||
| 24 | sed "s:@installpath@:${libexecdir}:" ${WORKDIR}/neard.in \ | ||
| 25 | > ${D}${sysconfdir}/init.d/neard | ||
| 26 | chmod 0755 ${D}${sysconfdir}/init.d/neard | ||
| 27 | fi | ||
| 28 | |||
| 29 | if ${@base_contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | ||
| 30 | install -d ${D}${systemd_unitdir}/system | ||
| 31 | sed "s:@installpath@:${libexecdir}:" ${WORKDIR}/neard.service.in \ | ||
| 32 | > ${D}${systemd_unitdir}/system/neard.service | ||
| 33 | fi | ||
| 34 | |||
| 35 | # Install the tests for neard-tests | ||
| 36 | install -d ${D}${libdir}/neard | ||
| 37 | install -m 0755 ${S}/test/* ${D}${libdir}/${BPN}/ | ||
| 38 | install -m 0755 ${S}/tools/nfctool/nfctool ${D}${libdir}/${BPN}/ | ||
| 39 | } | ||
| 40 | |||
| 41 | PACKAGES =+ "${PN}-tests" | ||
| 42 | |||
| 43 | FILES_${PN}-tests = "${libdir}/${BPN}/*-test" | ||
| 44 | FILES_${PN}-dbg += "${libdir}/${BPN}/*/.debug" | ||
| 45 | |||
| 46 | RDEPENDS_${PN} = "dbus python python-dbus python-pygobject" | ||
| 47 | |||
| 48 | # Bluez & Wifi are not mandatory except for handover | ||
| 49 | RRECOMMENDS_${PN} = "\ | ||
| 50 | ${@base_contains('DISTRO_FEATURES', 'bluetooth', 'bluez4', '', d)} \ | ||
| 51 | ${@base_contains('DISTRO_FEATURES', 'wifi','wpa-supplicant', '', d)} \ | ||
| 52 | " | ||
| 53 | |||
| 54 | RDEPENDS_${PN}-tests = "python python-dbus python-pygobject" | ||
| 55 | |||
| 56 | INITSCRIPT_NAME = "neard" | ||
| 57 | INITSCRIPT_PARAMS = "defaults 64" | ||
| 58 | |||
| 59 | SYSTEMD_SERVICE_${PN} = "neard.service" | ||
