From e841d8bffc733bf8a5e19f20c29a44d56072ff3e Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Wed, 22 Feb 2023 10:42:06 +0100 Subject: [PATCH] nmap: Add version 7.93 Add version 7.93. Use `build_is_srcdir`, because otherwise compilation fails for whatever reasons. Use `--without-openssl` because it doesn't work with our openssl version. Use `--without-zenmap` because we don't want to install junk in /usr/lib/python2.7 just to have a GUI --- nmap.be0 | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 nmap.be0 diff --git a/nmap.be0 b/nmap.be0 new file mode 100755 index 000000000..048865b4d --- /dev/null +++ b/nmap.be0 @@ -0,0 +1,42 @@ +#!/usr/bin/env beesh + +# BEE_VERSION nmap-7.93-0 + +# more info: https://nmap.org + +#SRCURL[0]="https://nmap.org/dist/nmap-${PKGVERSION}.tar.bz2" +SRCURL[0]="https://beehive.molgen.mpg.de/9027eac4b8ca57574012cb061ba9ce4d/nmap-7.93.tar.bz2" + +# PATCHURL+=() + +build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + # --without-openssl : doesn't work with our openssl version, whatever + # --without-zenmap : do not install junk in /usr/lib/python2.7 just to have a GUI + bee_configure \ + --without-openssl \ + --without-zenmap +} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} + +#mee_install_post() { +# exit +#}