[package] axtls: updae to 1.4.3
[openwrt/svn-archive/archive.git] / net / tsocks / Makefile
1 #
2 # Copyright (C) 2007 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
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=tsocks
12 PKG_VERSION:=1.8
13 PKG_RELEASE:=1
14 PKG_MD5SUM:=51caefd77e5d440d0bbd6443db4fc0f8
15
16 PKG_SOURCE_URL:=@SF/tsocks
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)beta5.tar.gz
18
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/tsocks
24 SECTION:=net
25 CATEGORY:=Network
26 SUBMENU:=Web Servers/Proxies
27 TITLE:=Transparent SOCKS v4 proxying library
28 URL:=http://tsocks.sourceforge.net/
29 endef
30
31 define Package/tsocks/description
32 Transparent SOCKS v4 proxying library
33 endef
34
35 define Build/Configure
36 $(call Build/Configure/Default,\
37 --with-conf=/etc/tsocks.conf \
38 )
39 endef
40
41 define Package/tsocks/install
42 $(INSTALL_DIR) $(1)/usr/bin $(1)/usr/lib
43 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tsocks $(1)/usr/bin/
44 $(CP) $(PKG_INSTALL_DIR)/lib/libtsocks.so{,*} $(1)/usr/lib/
45 endef
46
47 $(eval $(call BuildPackage,tsocks))