libgcrypt: Update from 1.7.8 to 1.8.0
[termux-packages] / packages / nmap / build.sh
CommitLineData
d7fb7c29
FF
1TERMUX_PKG_HOMEPAGE=https://nmap.org/
2TERMUX_PKG_DESCRIPTION="Utility for network discovery and security auditing"
099cab36 3TERMUX_PKG_VERSION=7.50
d946e67c 4TERMUX_PKG_REVISION=1
d7fb7c29 5TERMUX_PKG_SRCURL=https://nmap.org/dist/nmap-${TERMUX_PKG_VERSION}.tar.bz2
099cab36 6TERMUX_PKG_SHA256=e9a96a8e02bfc9e80c617932acc61112c23089521ee7d6b1502ecf8e3b1674b2
82c4064f
FF
7# Depend on netcat so that it gets installed automatically when installing
8# nmap, since the ncat program is usually distributed as part of nmap.
6f2bea7e 9TERMUX_PKG_DEPENDS="libpcap, pcre, openssl, resolv-conf, netcat, liblua"
d7fb7c29
FF
10# --without-nmap-update to avoid linking against libsvn_client:
11# --without-zenmap to avoid python scripts for graphical gtk frontend:
d7fb7c29 12# --without-ndiff to avoid python2-using ndiff utility:
6f2bea7e 13TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-static --with-liblua=$TERMUX_PREFIX --without-nmap-update --without-zenmap --without-ndiff"
d7fb7c29 14TERMUX_PKG_BUILD_IN_SRC="yes"
732c17a6 15
732c17a6 16termux_step_post_make_install () {
e06d93a6
FF
17 # Setup 'netcat' and 'nc' as symlink to 'ncat', since the other netcat implementations
18 # are outdated (gnu-netcat) or non-portable (openbsd-netcat).
19 for prog in netcat nc; do
20 cd $TERMUX_PREFIX/bin
21 ln -s -f ncat $prog
22 cd $TERMUX_PREFIX/share/man/man1
23 ln -s -f ncat.1 ${prog}.1
24 done
732c17a6 25}