aMule: update to 2.3.1
[openwrt/svn-archive/archive.git] / net / netcat / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=netcat
4 PKG_VERSION:=0.7.1
5 PKG_RELEASE:=2
6
7 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
8 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
9 PKG_MD5SUM:=0a29eff1736ddb5effd0b1ec1f6fe0ef
10
11 PKG_INSTALL:=1
12
13 include $(INCLUDE_DIR)/package.mk
14
15 define Package/netcat
16 SECTION:=net
17 CATEGORY:=Network
18 TITLE:=A feature-rich network debugging and exploration tool.
19 URL:=http://netcat.sourceforge.net/
20 endef
21
22 define Package/netcat/description
23 Netcat is a featured networking utility which reads and writes data across network connections, using the TCP/IP protocol.
24 It is designed to be a reliable "back-end" tool that can be used directly or easily driven by other programs and scripts. At the same time, it is a feature-rich network debugging and exploration tool, since it can create almost any kind of connection you would need and has several interesting built-in capabilities.
25 endef
26
27 define Build/Configure
28 $(call Build/Configure/Default, \
29 --disable-rpath \
30 --with-included-getopt \
31 )
32 endef
33
34 define Package/netcat/install
35 $(INSTALL_DIR) $(1)/usr/bin
36 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/netcat \
37 $(1)/usr/bin
38 endef
39
40 define Package/netcat/postinst
41 #!/bin/sh
42 if [ -e $${IPKG_INSTROOT}/usr/bin/nc ]; then
43 rm -rf $${IPKG_INSTROOT}/usr/bin/nc;
44 fi
45 ln -s ./netcat $${IPKG_INSTROOT}/usr/bin/nc
46 endef
47
48 define Package/netcat/postrm
49 #!/bin/sh
50 rm $${IPKG_INSTROOT}/usr/bin/nc
51 ln -s ../../bin/busybox $${IPKG_INSTROOT}/usr/bin/nc
52 $${IPKG_INSTROOT}/usr/bin/nc 2>&1 | grep 'applet not found' > /dev/null 2>&1 && rm $${IPKG_INSTROOT}/usr/bin/nc
53 exit 0
54 endef
55
56
57 $(eval $(call BuildPackage,netcat))