2006-10-30 13:51:50 +00:00
|
|
|
#
|
2010-10-18 20:38:42 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-08-02 08:29:39 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=heyu
|
2010-10-18 20:38:42 +00:00
|
|
|
PKG_VERSION:=2.9.1
|
2006-08-02 08:29:39 +00:00
|
|
|
PKG_RELEASE:=1
|
2006-10-30 13:51:50 +00:00
|
|
|
|
2008-07-05 12:31:43 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_SOURCE_URL:=http://heyu.tanj.com/download/
|
2010-10-18 20:38:42 +00:00
|
|
|
PKG_MD5SUM:=89d20d7f45109e7add5f0a141eac04eb
|
2006-10-30 13:51:50 +00:00
|
|
|
|
2006-08-02 08:29:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/heyu
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=+setserial
|
|
|
|
TITLE:=X10 home automation control using a CM11A
|
|
|
|
URL:=http://heyu.tanj.com/heyu2/
|
|
|
|
endef
|
|
|
|
|
2008-07-05 12:31:43 +00:00
|
|
|
define Package/heyu/description
|
|
|
|
HEYU is a text-based console program for remotely controlling lights
|
|
|
|
and appliances in the home or office. It is made available under a
|
|
|
|
free and open source license.
|
|
|
|
|
|
|
|
Heyu uses the CM11A computer interface to send and receive X10 control
|
|
|
|
signals over the AC power lines to modules which can turn On, Off, or
|
|
|
|
Dim attached lamps or appliances. It can store a schedule of timed
|
|
|
|
events in the CM11A memory for execution when the computer is turned
|
|
|
|
off or disconnected.
|
|
|
|
endef
|
|
|
|
|
2006-08-02 08:29:39 +00:00
|
|
|
define Package/heyu/conffiles
|
|
|
|
/etc/heyu/x10.conf
|
|
|
|
endef
|
|
|
|
|
2006-08-18 21:21:06 +00:00
|
|
|
define Build/Compile
|
2006-10-30 13:51:50 +00:00
|
|
|
$(call Build/Compile/Default, \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS) \$$$$(DFLAGS)" \
|
|
|
|
)
|
2006-08-02 08:29:39 +00:00
|
|
|
endef
|
|
|
|
|
2010-10-18 20:38:42 +00:00
|
|
|
define Package/heyu/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/heyu $(1)/usr/bin/
|
2010-10-18 20:38:42 +00:00
|
|
|
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
|
|
|
|
$(INSTALL_DATA) ./files/x10.conf $(1)/etc/$(PKG_NAME)/x10.conf
|
2006-08-02 08:29:39 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,heyu))
|