e6daa1e0b7ff7d981a50c53046fdcaa38778fbd6
[10.03/packages.git] / net / tinyproxy / Makefile
1 #
2 # Copyright (C) 2006-2011 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:=tinyproxy
11 PKG_VERSION:=1.8.2
12 PKG_RELEASE:=4
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://www.banu.com/pub/tinyproxy/1.8/
16 PKG_MD5SUM:=edc8502193cfed4974d6a770da173755
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/tinyproxy
23   SUBMENU:=Web Servers/Proxies
24   SECTION:=net
25   CATEGORY:=Network
26   TITLE:=Tinyproxy is a lightweight HTTP and HTTPS proxy
27   URL:=http://tinyproxy.sourceforge.net/
28 endef
29
30 define Package/tinyproxy/conffiles
31 /etc/config/tinyproxy
32 endef
33
34 CONFIGURE_ARGS+= \
35         --enable-filter \
36         --enable-transparent \
37         --disable-regexcheck \
38
39 define Package/tinyproxy/install
40         $(INSTALL_DIR) $(1)/usr/sbin
41         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/tinyproxy $(1)/usr/sbin/
42         $(INSTALL_DIR) $(1)/usr/share/tinyproxy
43         $(CP) $(PKG_INSTALL_DIR)/usr/share/tinyproxy/*.html $(1)/usr/share/tinyproxy/
44         $(INSTALL_DIR) $(1)/etc/config
45         $(INSTALL_CONF) ./files/tinyproxy.config $(1)/etc/config/tinyproxy
46         $(INSTALL_DIR) $(1)/etc/init.d
47         $(INSTALL_BIN) ./files/tinyproxy.init $(1)/etc/init.d/tinyproxy
48 endef
49
50 $(eval $(call BuildPackage,tinyproxy))