add basic asterisk 1.6.x package based on 1.6.1-rc1
[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:=http://downloads.openwrt.org/sources/
17 PKG_MD5SUM:=a0991ae3d1f1a361558bed1a4aa66a9c
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/crowdcontrol
22 SECTION:=net
23 CATEGORY:=Network
24 TITLE:=The extra-light http proxy server
25 URL:=http://sourceforge.net/projects/crowdcontrol/
26 endef
27
28 define Package/crowdcontrol/description
29 Crowd Control is an small, cross-platform HTTP proxy (a fork of the elhttp project)
30 designed for systems with little RAM, such as a home router. It can filter URLs using
31 SquidGuard blocklists, and has the unique ability to filter HTTPS domains as well.
32 endef
33
34 define Build/Configure
35 endef
36
37 define Build/Compile
38 $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/crowdcontrol $(PKG_BUILD_DIR)/crowdcontrol.c
39 endef
40
41 define Package/crowdcontrol/install
42 mkdir -p $(1)/usr/sbin
43 mkdir -p $(1)/etc/crowdcontrol
44 $(CP) $(PKG_BUILD_DIR)/crowdcontrol $(1)/usr/sbin
45 $(CP) $(PKG_BUILD_DIR)/*-{domains,expressions,urls} $(1)/etc/crowdcontrol/
46 endef
47
48 $(eval $(call BuildPackage,crowdcontrol))