blob: 0441cff675ae90fafccb3d04b34f0ef436ab9936 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#
# 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))
|