add md5sum for zabbix
[openwrt/svn-archive/archive.git] / net / crowdcontrol / 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 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=crowdcontrol
12 PKG_VERSION:=0.4b
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@openwrt
17 PKG_MD5SUM:=a0991ae3d1f1a361558bed1a4aa66a9c
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/crowdcontrol
26 SECTION:=net
27 CATEGORY:=Network
28 TITLE:=The extra-light http proxy server
29 DESCRIPTION:=\
30 Crowd Control is an small, cross-platform HTTP proxy (a fork of the elhttp project) \\\
31 designed for systems with little RAM, such as a home router. It can filter URLs using \\\
32 SquidGuard blocklists, and has the unique ability to filter HTTPS domains as well.
33 URL:=http://sourceforge.net/projects/crowdcontrol/
34 endef
35
36 define Build/Configure
37 endef
38
39 define Build/Compile
40 $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/crowdcontrol $(PKG_BUILD_DIR)/crowdcontrol.c
41 endef
42
43 define Package/crowdcontrol/install
44 mkdir -p $(1)/usr/sbin
45 mkdir -p $(1)/etc/crowdcontrol
46 $(CP) $(PKG_BUILD_DIR)/crowdcontrol $(1)/usr/sbin
47 $(CP) $(PKG_BUILD_DIR)/*-{domains,expressions,urls} $(1)/etc/crowdcontrol/
48 endef
49
50 $(eval $(call BuildPackage,crowdcontrol))