[packages] net/freeswitch: Removed accidentally committed warning suppresion
[packages.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   TITLE:=Transparent SOCKS v4 proxying library
27   URL:=http://tsocks.sourceforge.net/
28 endef
29
30 define Package/tsocks/description
31 Transparent SOCKS v4 proxying library
32 endef
33
34 define Build/Configure
35         $(call Build/Configure/Default,\
36                   --with-conf=/etc/tsocks.conf \
37         )
38 endef
39
40 define Package/tsocks/install
41         $(INSTALL_DIR) $(1)/usr/bin $(1)/usr/lib
42         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tsocks $(1)/usr/bin/
43         $(CP) $(PKG_INSTALL_DIR)/lib/libtsocks.so{,*} $(1)/usr/lib/
44 endef
45
46 $(eval $(call BuildPackage,tsocks))