package/easydbus: new package

Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2017.02.x
Marcin Niestroj 2016-12-07 15:49:05 +01:00 committed by Peter Korsgaard
parent b754237520
commit 04f3ec6931
4 changed files with 30 additions and 0 deletions

View File

@ -521,6 +521,7 @@ menu "Lua libraries/modules"
source "package/cosmo/Config.in"
source "package/coxpcall/Config.in"
source "package/dado/Config.in"
source "package/easydbus/Config.in"
source "package/lbase64/Config.in"
source "package/ljlinenoise/Config.in"
source "package/ljsyscall/Config.in"

View File

@ -0,0 +1,14 @@
config BR2_PACKAGE_EASYDBUS
bool "easydbus"
select BR2_PACKAGE_LIBGLIB2
depends on BR2_USE_WCHAR # libglib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
depends on BR2_USE_MMU # libglib2
help
Easy to use DBus library for Lua.
https://github.com/mniestroj/easydbus
comment "easydbus needs a toolchain w/ wchar, threads"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS

View File

@ -0,0 +1,2 @@
# Locally calculated
sha256 3e5907664f5dfebbc0e652faf87564fd58dbd639742f442c100ef2db8be46e52 easydbus-59c340f2cd2c92ded82f9d4436866847f295faab.tar.gz

View File

@ -0,0 +1,13 @@
################################################################################
#
# easydbus
#
################################################################################
EASYDBUS_VERSION = 59c340f2cd2c92ded82f9d4436866847f295faab
EASYDBUS_SITE = $(call github,mniestroj,easydbus,$(EASYDBUS_VERSION))
EASYDBUS_DEPENDENCIES = luainterpreter libglib2
EASYDBUS_LICENSE = MIT
EASYDBUS_LICENSE_FILES = LICENSE
$(eval $(cmake-package))