add packages_10.03.2 in preparation for the 10.03.2 interim release
[10.03/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
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/openrrcp
21   SECTION:=net
22   CATEGORY:=Network
23   TITLE:=OpenRRCP toolset for managing RRCP-capable Ethernet switches
24   URL:=http://openrrcp.org.ru/
25 endef
26
27 define Package/openrrcp/description
28         OpenRRCP toolset for managing RRCP-capable Ethernet switches
29 endef
30
31 define Build/Compile
32         $(call Build/Compile/Default, \
33                 PREFIX="/usr" \
34         )
35 endef
36
37 define Package/openrrcp/install
38         $(MAKE) -C $(PKG_BUILD_DIR) \
39                 DESTDIR="$(1)" \
40                 PREFIX="/usr" \
41                 install
42 endef
43
44 $(eval $(call BuildPackage,openrrcp))