mpv: Add ffmpeg libs to LD_PRELOAD
[termux-packages] / packages / nmap / build.sh
... / ...
CommitLineData
1TERMUX_PKG_HOMEPAGE=https://nmap.org/
2TERMUX_PKG_DESCRIPTION="Utility for network discovery and security auditing"
3TERMUX_PKG_VERSION=7.40
4TERMUX_PKG_REVISION=1
5TERMUX_PKG_SRCURL=https://nmap.org/dist/nmap-${TERMUX_PKG_VERSION}.tar.bz2
6TERMUX_PKG_SHA256=9e14665fffd054554d129d62c13ad95a7b5c7a046daa2290501909e65f4d3188
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.
9TERMUX_PKG_DEPENDS="libpcap, pcre, openssl, resolv-conf, netcat"
10# --without-nmap-update to avoid linking against libsvn_client:
11# --without-zenmap to avoid python scripts for graphical gtk frontend:
12# --with-liblua=included to use internal liblua, since only lua 5.2 supported:
13# --without-ndiff to avoid python2-using ndiff utility:
14TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-static --with-liblua=included --without-nmap-update --without-zenmap --without-ndiff"
15TERMUX_PKG_BUILD_IN_SRC="yes"
16
17termux_step_post_make_install () {
18 # Setup 'netcat' and 'nc' as symlink to 'ncat', since the other netcat implementations
19 # are outdated (gnu-netcat) or non-portable (openbsd-netcat).
20 for prog in netcat nc; do
21 cd $TERMUX_PREFIX/bin
22 ln -s -f ncat $prog
23 cd $TERMUX_PREFIX/share/man/man1
24 ln -s -f ncat.1 ${prog}.1
25 done
26}