9b00474af4
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 40039
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2008-2013 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=anyremote
|
|
PKG_VERSION:=6.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/${PKG_NAME}
|
|
PKG_MD5SUM:=130369d8f632127b20de67930386e9ca
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/anyremote
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=A bluetooth remote control app
|
|
DEPENDS:=+bluez-libs +libpthread
|
|
URL:=http://anyremote.sourceforge.net/
|
|
endef
|
|
|
|
define Package/anyremote/description
|
|
Remote control your machine via bluetooth
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default, \
|
|
--disable-xtest --disable-glib --disable-iconv \
|
|
)
|
|
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
|
|
|
|
define Package/anyremote/conffiles
|
|
/etc/anyremote.cfg
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,anyremote))
|