cleanup Makefile
[openwrt/svn-archive/archive.git] / net / socat / 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:=socat
12 PKG_VERSION:=1.4.3.0
13 PKG_RELEASE:=1
14 PKG_MD5SUM:=ce574e75c2fda4456e8efd4efb86ec5e
15
16 PKG_SOURCE_URL:=http://www.dest-unreach.org/socat/download/
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
18 PKG_CAT:=bzcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-1.4
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/socat
26 SECTION:=net
27 CATEGORY:=Network
28 DEPENDS:=+libopenssl +libpthread
29 TITLE:=A multipurpose relay (SOcket CAT)
30 DESCRIPTION:=SoCat (for SOcket CAT) establishes two bidirectional byte streams and\\\
31 transfers data between them.\\\
32 Data channels may be files, pipes, devices (terminal or modem, etc.), or\\\
33 sockets (Unix, IPv4, IPv6, raw, UDP, TCP, SSL). It provides forking,\\\
34 logging and tracing, different modes for interprocess communication and\\\
35 many more options.\\\
36 URL:=http://www.dest-unreach.org/socat/
37 endef
38
39 define Build/Configure
40 $(call Build/Configure/Default,--disable-libwrap \
41 --disable-readline, sc_cv_termios_ispeed="no")
42 endef
43
44 define Build/Compile
45 $(call Build/Compile/Default, DESTDIR="$(PKG_INSTALL_DIR)" all install)
46 endef
47
48 define Package/socat/install
49 install -d -m0755 $(1)/usr/bin
50 $(CP) $(PKG_INSTALL_DIR)/usr/bin/socat $(1)/usr/bin/
51 endef
52
53 $(eval $(call BuildPackage,socat))