Import buildroot 2016.02.01

This commit is contained in:
2016-02-24 22:35:39 +01:00
parent a6ee09dea4
commit 828befcf3c
7393 changed files with 390887 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
config BR2_PACKAGE_DBUS_TRIGGERD
bool "dbus-triggerd"
depends on BR2_USE_MMU # fork(), dbus
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
depends on BR2_PACKAGE_DBUS
help
dbus-triggerd is a tool to trigger shell-commands upon receiving
a given dbus-signal.
http://gareus.org/oss/dbustriggerd/start
comment "dbus-triggerd needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on BR2_PACKAGE_DBUS
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@@ -0,0 +1,20 @@
################################################################################
#
# dbus-triggerd
#
################################################################################
DBUS_TRIGGERD_VERSION = ba3dbec805cb707c94c54de21666bf18b79bcc09
DBUS_TRIGGERD_SITE = git://rg42.org/dbustriggerd.git
DBUS_TRIGGERD_LICENSE = GPLv2+
DBUS_TRIGGERD_DEPENDENCIES = host-pkgconf dbus
define DBUS_TRIGGERD_BUILD_CMDS
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) all
endef
define DBUS_TRIGGERD_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(TARGET_DIR)" -C $(@D) install
endef
$(eval $(generic-package))