Merge pull request #2558 from dibdot/adblock
[feed/packages.git] / utils / crelay / Makefile
1 #
2 # Copyright (C) 2015 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=crelay
11 PKG_VERSION:=0.9
12 PKG_RELEASE:=1
13
14 PKG_SOURCE_PROTO:=git
15 PKG_SOURCE_URL:=https://github.com/ondrej1024/crelay
16 PKG_SOURCE_VERSION:=V$(PKG_VERSION)
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
18 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
19
20 PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>
21 PKG_LICENSE:=GPL-2.0
22 PKG_LICENSE_FILES:=LICENSE
23
24 include $(INCLUDE_DIR)/package.mk
25 include $(INCLUDE_DIR)/nls.mk
26
27 define Package/crelay
28 SECTION:=utils
29 CATEGORY:=Utilities
30 TITLE:=USB relay remote control daemon
31 URL:=http://github.com/ondrej1024/crelay
32 DEPENDS:=+libftdi1 +hidapi +libusb-1.0
33 endef
34
35 define Package/crelay/description
36 crelay is used to control different relay cards in a unified manner. It provides
37 several interfaces for controlling the relays locally or remotely by a web browser
38 or a smartphone. The card which is detected first will be used. A WebUI control is
39 available on port 8000 (default)
40 .
41 Currently supported relay cards:
42 - Conrad USB 4-channel relay card
43 - Sainsmart USB 4-channel relay card
44 - Generic GPIO relays
45 - HID API compatible relay card
46 endef
47
48 define Build/Configure
49 endef
50
51 TARGET_CFLAGS+= \
52 -D_GNU_SOURCE \
53 -I$(STAGING_DIR)/usr/include/libftdi1 \
54 -I$(STAGING_DIR)/usr/include/hidapi
55
56 TARGET_LDFLAGS+= $(if $(ICONV_FULL),-liconv)
57
58 define Build/Compile
59 $(MAKE) -C $(PKG_BUILD_DIR)/src \
60 CC="$(TARGET_CC)" \
61 CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS) $(TARGET_CPPFLAGS) $(EXTRA_CPPFLAGS)" \
62 LDFLAGS="$(TARGET_LDFLAGS) $(EXTRA_LDFLAGS)"
63 endef
64
65 define Package/crelay/install
66 $(INSTALL_DIR) $(1)/usr/bin
67 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/crelay $(1)/usr/bin/
68 $(INSTALL_DIR) $(1)/etc/init.d
69 $(INSTALL_BIN) ./files/crelay.init $(1)/etc/init.d/crelay
70 $(INSTALL_CONF) $(PKG_BUILD_DIR)/conf/crelay.conf $(1)/etc
71 endef
72
73 $(eval $(call BuildPackage,crelay))