netcat package
[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:=1
6
7 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
8 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
9 PKG_MD5SUM:=0a29eff1736ddb5effd0b1ec1f6fe0ef
10 PKG_CAT:=bzcat
11
12 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
13 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
14
15 include $(INCLUDE_DIR)/package.mk
16
17 define Package/netcat
18 SECTION:=net
19 CATEGORY:=Network
20 TITLE:=A feature-rich network debugging and exploration tool.
21 DESCRIPTION:=\
22 Netcat is a featured networking utility which reads and writes data across network connections, using the TCP/IP protocol. \\\
23 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.
24 URL:=http://netcat.sourceforge.net/
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 Build/Compile
35 DESTDIR="$(PKG_INSTALL_DIR)" \
36 $(MAKE) -C $(PKG_BUILD_DIR) \
37 all install
38 endef
39
40 define Package/netcat/install
41 $(INSTALL_DIR) $(1)/usr/bin
42 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/netcat \
43 $(1)/usr/bin
44 endef
45
46 define Package/netcat/postinst
47 #!/bin/sh
48 if [ -e $${IPKG_INSTROOT}/usr/bin/nc ]; then
49 rm -rf $${IPKG_INSTROOT}/usr/bin/nc;
50 fi
51 ln -s ./netcat $${IPKG_INSTROOT}/usr/bin/nc
52 endef
53
54 define Package/netcat/postrm
55 #!/bin/sh
56 rm $${IPKG_INSTROOT}/usr/bin/nc
57 ln -s ../../bin/busybox $${IPKG_INSTROOT}/usr/bin/nc
58 $${IPKG_INSTROOT}/usr/bin/nc 2>&1 | grep 'applet not found' > /dev/null 2>&1 && rm $${IPKG_INSTROOT}/usr/bin/nc
59 exit 0
60 endef
61
62
63 $(eval $(call BuildPackage,netcat))