Massive propset of svn:keywords for packages newly addded, next time, we should not...
[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 # $Id$
8
9
10 include $(TOPDIR)/rules.mk
11
12 PKG_NAME:=tsocks
13 PKG_VERSION:=1.8
14 PKG_RELEASE:=1
15 PKG_MD5SUM:=51caefd77e5d440d0bbd6443db4fc0f8
16
17 PKG_SOURCE_URL:=http://ftp1.sourceforge.net/tsocks/
18 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)beta5.tar.gz
19 PKG_CAT:=zcat
20
21 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
22 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/tsocks
27 SECTION:=net
28 CATEGORY:=Network
29 TITLE:=Transparent SOCKS v4 proxying library
30 DESCRIPTION:=Transparent SOCKS v4 proxying library
31 URL:=http://tsocks.sourceforge.net/
32 endef
33
34 define Build/Configure
35 $(call Build/Configure/Default,\
36 --with-conf=/etc/tsocks.conf \
37 )
38 endef
39
40 define Build/Compile
41 $(call Build/Compile/Default,\
42 DESTDIR="$(PKG_INSTALL_DIR)" \
43 all install \
44 )
45 endef
46
47 define Package/tsocks/install
48 $(INSTALL_DIR) $(1)/usr/bin $(1)/usr/lib
49 $(CP) $(PKG_INSTALL_DIR)/usr/bin/tsocks $(1)/usr/bin/
50 $(CP) $(PKG_INSTALL_DIR)/lib/libtsocks.so{,*} $(1)/usr/lib/
51 endef
52
53 $(eval $(call BuildPackage,tsocks))