[net] Web Servers/Proxies: Move all web servers, proxies, and related programs into...
[openwrt/svn-archive/archive.git] / net / wccpd / Makefile
1 #
2 # Copyright (C) 2006 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:=wccpd
11 PKG_VERSION:=0.2
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/wccpd
16 PKG_MD5SUM:=5f15c274de61dfb88e0dbfc1ccbe6b67
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/wccpd
23 SECTION:=net
24 CATEGORY:=Network
25 SUBMENU:=Web Servers/Proxies
26 TITLE:=a Web Cache Coordination daemon
27 URL:=http://wccpd.sourceforge.net/
28 endef
29
30 define Package/wccpd/description
31 wccpd is a WCCP (Web Cache Coordination Protocol) server daemon
32 It allows a router (running Linux) to redirect web traffic to a
33 group of Squid servers using WCCP as the monitoring/controling
34 protocol.
35 endef
36
37 define Package/wccpd/install
38 $(INSTALL_DIR) $(1)/usr/sbin
39 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/wccpd $(1)/usr/sbin/
40 endef
41
42 $(eval $(call BuildPackage,wccpd))