2014-03-27 07:02:11 +00:00
|
|
|
#
|
2013-02-11 10:47:00 +00:00
|
|
|
# Copyright (C) 2008-2013 OpenWrt.org
|
2008-07-12 08:23:58 +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:=anyremote
|
2013-02-11 10:47:00 +00:00
|
|
|
PKG_VERSION:=6.2
|
|
|
|
PKG_RELEASE:=1
|
2008-07-12 08:23:58 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/${PKG_NAME}
|
2013-02-11 10:47:00 +00:00
|
|
|
PKG_MD5SUM:=130369d8f632127b20de67930386e9ca
|
2008-07-12 08:23:58 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/anyremote
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE:=A bluetooth remote control app
|
2013-02-11 10:47:00 +00:00
|
|
|
DEPENDS:=+bluez-libs +libpthread
|
2008-07-12 08:23:58 +00:00
|
|
|
URL:=http://anyremote.sourceforge.net/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/anyremote/description
|
|
|
|
Remote control your machine via bluetooth
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
$(call Build/Configure/Default, \
|
2013-02-11 10:47:00 +00:00
|
|
|
--disable-xtest --disable-glib --disable-iconv \
|
2008-07-12 08:23:58 +00:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/anyremote/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
|
|
|
|
$(INSTALL_DIR) $(1)/etc
|
|
|
|
$(INSTALL_CONF) ./files/anyremote.cfg $(1)/etc/anyremote.cfg
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/anyremote.init $(1)/etc/init.d/anyremote
|
|
|
|
endef
|
|
|
|
|
2011-11-16 20:02:41 +00:00
|
|
|
define Package/anyremote/conffiles
|
|
|
|
/etc/anyremote.cfg
|
|
|
|
endef
|
|
|
|
|
2008-07-12 08:23:58 +00:00
|
|
|
$(eval $(call BuildPackage,anyremote))
|