Merge pull request #13748 from aaronjg/mwan3-owner-procd
[feed/packages.git] / utils / telldus-core / Makefile
1 #
2 # Copyright (C) 2010 Telldus Technologies AB
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 #
6 include $(TOPDIR)/rules.mk
7
8 PKG_NAME:=telldus-core
9 PKG_VERSION:=2.1.2
10 PKG_RELEASE:=6
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
13 PKG_SOURCE_URL:=http://download.telldus.com/TellStick/Software/telldus-core/
14 PKG_HASH:=a20f6c74814afc23312d2c93ebbb37fdea9deaaee05ae7b6a6275e11e4662014
15
16 PKG_MAINTAINER:=Peter Liedholm <PeterFromSwe884@gmail.com>
17 PKG_LICENSE:=LGPL-2.1-or-later
18 PKG_LICENSE_FILES:=LICENSE
19
20 CMAKE_INSTALL:=1
21 PKG_BUILD_PARALLEL:=0
22 PKG_BUILD_DEPENDS:=!USE_GLIBC:argp-standalone
23
24 include $(INCLUDE_DIR)/package.mk
25 include $(INCLUDE_DIR)/cmake.mk
26
27 define Package/telldus-core
28 SECTION:=utils
29 CATEGORY:=Utilities
30 TITLE:=Telldus TellStick USB interface
31 URL:=https://telldus.com
32 DEPENDS:=+confuse +libftdi +libstdcpp
33 endef
34
35 define Package/telldus-core/description
36 Telldus driver for USB-based 433 MHz RF transceiver for home automation.
37 MUST be built with full language support, (don't know how to DEPEND that)
38 endef
39
40 define Package/telldus-core/conffiles
41 /etc/tellstick.conf
42 endef
43
44 CMAKE_OPTIONS += \
45 -DBUILD_LIBTELLDUS-CORE=1 \
46 -DBUILD_TDTOOL=1 \
47 -DGENERATE_MAN=0
48
49 define Package/telldus-core/install
50 $(INSTALL_DIR) $(1)/usr/bin
51 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tdtool $(1)/usr/bin
52 $(INSTALL_DIR) $(1)/usr/sbin
53 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/telldusd $(1)/usr/sbin
54 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/tdadmin $(1)/usr/sbin
55 $(INSTALL_DIR) $(1)/usr/lib
56 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libtelldus* $(1)/usr/lib
57 $(INSTALL_DIR) $(1)/etc/config
58 $(INSTALL_CONF) ./files/tellstick.conf $(1)/etc
59 $(INSTALL_DIR) $(1)/etc/init.d
60 $(INSTALL_BIN) ./files/telldusd $(1)/etc/init.d
61 endef
62
63 $(eval $(call BuildPackage,telldus-core))