nuke $Id$ in /packages as well
[packages.git] / net / openrrcp / Makefile
1
2 # Copyright (C) 2008 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:=openrrcp
11 PKG_VERSION:=0.2.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://nording.ru/projects/download/openrrcp/stable
16 PKG_MD5SUM:=e3d6097732af812b03dbbbedeced34d2
17 PKG_CAT:=zcat
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/openrrcp
22   SECTION:=net
23   CATEGORY:=Network
24   TITLE:=OpenRRCP toolset for managing RRCP-capable Ethernet switches
25   URL:=http://openrrcp.org.ru/
26 endef
27
28 define Package/openrrcp/description
29         OpenRRCP toolset for managing RRCP-capable Ethernet switches
30 endef
31
32 define Build/Compile
33         $(call Build/Compile/Default, \
34                 PREFIX="/usr" \
35         )
36 endef
37
38 define Package/openrrcp/install
39         $(MAKE) -C $(PKG_BUILD_DIR) \
40                 DESTDIR="$(1)" \
41                 PREFIX="/usr" \
42                 install
43 endef
44
45 $(eval $(call BuildPackage,openrrcp))