treewide: change email
[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_DEPENDS:=argp-standalone
22
23 include $(INCLUDE_DIR)/package.mk
24 include $(INCLUDE_DIR)/cmake.mk
25
26 define Package/telldus-core
27 SECTION:=utils
28 CATEGORY:=Utilities
29 TITLE:=Telldus TellStick USB interface
30 URL:=https://telldus.com
31 DEPENDS:=+confuse +libftdi +libstdcpp
32 endef
33
34 define Package/telldus-core/description
35 Telldus driver for USB-based 433 MHz RF transceiver for home automation.
36 MUST be built with full language support, (don't know how to DEPEND that)
37 endef
38
39 define Package/telldus-core/conffiles
40 /etc/tellstick.conf
41 endef
42
43 CMAKE_OPTIONS += \
44 -DBUILD_LIBTELLDUS-CORE=1 \
45 -DBUILD_TDTOOL=1 \
46 -DGENERATE_MAN=0
47
48 define Package/telldus-core/install
49 $(INSTALL_DIR) $(1)/usr/bin
50 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tdtool $(1)/usr/bin
51 $(INSTALL_DIR) $(1)/usr/sbin
52 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/telldusd $(1)/usr/sbin
53 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/tdadmin $(1)/usr/sbin
54 $(INSTALL_DIR) $(1)/usr/lib
55 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libtelldus* $(1)/usr/lib
56 $(INSTALL_DIR) $(1)/etc/config
57 $(INSTALL_CONF) ./files/tellstick.conf $(1)/etc
58 $(INSTALL_DIR) $(1)/etc/init.d
59 $(INSTALL_BIN) ./files/telldusd $(1)/etc/init.d
60 endef
61
62 $(eval $(call BuildPackage,telldus-core))