fix conflicting optimization flags set by configure
[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 PKG_MD5SUM:=a0991ae3d1f1a361558bed1a4aa66a9c
15
16 PKG_SOURCE_URL:=@openwrt/
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
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:=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 URL:=http://sourceforge.net/projects/crowdcontrol/
33 endef
34
35 define Build/Compile
36 $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/crowdcontrol $(PKG_BUILD_DIR)/crowdcontrol.c
37 endef
38
39 define Package/crowdcontrol/install
40 mkdir -p $(1)/usr/sbin
41 mkdir -p $(1)/etc/crowdcontrol
42 $(CP) $(PKG_BUILD_DIR)/crowdcontrol $(1)/usr/sbin
43 $(CP) $(PKG_BUILD_DIR)/*-{domains,expressions,urls} $(1)/etc/crowdcontrol/
44 endef
45
46 $(eval $(call BuildPackage,crowdcontrol))