postgresql: Update from 9.6.2 to 9.6.3
[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"
e6546c71 3TERMUX_PKG_VERSION=7.40
6f2bea7e 4TERMUX_PKG_REVISION=2
d7fb7c29 5TERMUX_PKG_SRCURL=https://nmap.org/dist/nmap-${TERMUX_PKG_VERSION}.tar.bz2
e6546c71 6TERMUX_PKG_SHA256=9e14665fffd054554d129d62c13ad95a7b5c7a046daa2290501909e65f4d3188
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}