neardal: new package
[Peter: add toolchain deps for dbus. add dbus/host-pkgconf, wrap help text] Signed-off-by: Simon Dawson <spdawson@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> (built-test on a minimal powerpc config) Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
34ae9eb63d
commit
907ff8983e
@ -424,6 +424,7 @@ source "package/libusb/Config.in"
|
||||
source "package/libusb-compat/Config.in"
|
||||
source "package/libv4l/Config.in"
|
||||
source "package/mtdev/Config.in"
|
||||
source "package/neardal/Config.in"
|
||||
source "package/pcsc-lite/Config.in"
|
||||
endmenu
|
||||
|
||||
|
15
package/neardal/Config.in
Normal file
15
package/neardal/Config.in
Normal file
@ -0,0 +1,15 @@
|
||||
config BR2_PACKAGE_NEARDAL
|
||||
bool "neardal"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
|
||||
depends on BR2_USE_MMU # dbus
|
||||
select BR2_PACKAGE_DBUS
|
||||
select BR2_PACKAGE_DBUS_GLIB
|
||||
help
|
||||
Provides a simple C API to exchange data with the neard NFC
|
||||
manager daemon.
|
||||
|
||||
https://github.com/connectivity/neardal
|
||||
|
||||
comment "neardal requires a toolchain with WCHAR and threads support"
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
16
package/neardal/neardal.mk
Normal file
16
package/neardal/neardal.mk
Normal file
@ -0,0 +1,16 @@
|
||||
#############################################################
|
||||
#
|
||||
# neardal
|
||||
#
|
||||
#############################################################
|
||||
NEARDAL_VERSION = 0.7
|
||||
NEARDAL_SITE = http://github.com/connectivity/neardal/tarball/$(NEARDAL_VERSION)
|
||||
NEARDAL_SOURCE = connectivity-neardal-$(NEARDAL_VERSION).tar.gz
|
||||
NEARDAL_INSTALL_STAGING = YES
|
||||
NEARDAL_LICENSE = GPLv2
|
||||
NEARDAL_LICENSE_FILES = COPYING
|
||||
|
||||
NEARDAL_DEPENDENCIES = host-pkgconf dbus dbus-glib
|
||||
NEARDAL_AUTORECONF = YES
|
||||
|
||||
$(eval $(autotools-package))
|
Loading…
Reference in New Issue
Block a user