1 config BR2_PACKAGE_DOMOTICZ
3 depends on BR2_USE_MMU # mosquitto
4 depends on !BR2_STATIC_LIBS # mosquitto
5 depends on BR2_TOOLCHAIN_HAS_THREADS
6 depends on BR2_INSTALL_LIBSTDCPP
7 depends on BR2_USE_WCHAR
8 depends on BR2_PACKAGE_LUA_5_2 || BR2_PACKAGE_LUA_5_3
9 select BR2_PACKAGE_BOOST
10 select BR2_PACKAGE_BOOST_DATE_TIME
11 select BR2_PACKAGE_BOOST_SYSTEM
12 select BR2_PACKAGE_BOOST_THREAD
13 select BR2_PACKAGE_LIBCURL
14 select BR2_PACKAGE_MOSQUITTO
15 select BR2_PACKAGE_OPENSSL
16 select BR2_PACKAGE_SQLITE
17 select BR2_PACKAGE_ZLIB
19 Domoticz is a Home Automation System that lets you monitor
20 and configure various devices like: Lights, Switches,
21 various sensors/meters like Temperature, Rain, Wind, UV,
22 Electra, Gas, Water and much more. Notifications/Alerts can
23 be sent to any mobile device.
27 comment "domoticz needs lua >= 5.2 and a toolchain w/ C++, threads, wchar, dynamic library"
28 depends on BR2_USE_MMU
29 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
30 !BR2_USE_WCHAR || BR2_STATIC_LIBS || \
31 !(BR2_PACKAGE_LUA_5_2 || BR2_PACKAGE_LUA_5_3)