diff options
author | davidovski <git@davidovski.xyz> | 2022-02-16 09:37:41 +0000 |
---|---|---|
committer | davidovski <git@davidovski.xyz> | 2022-02-16 09:37:41 +0000 |
commit | 045734ceeb5b8e8c2cdaa9f62f89de57db07a6ec (patch) | |
tree | 208fb5ec9af934c1db1e3cf3c79b91cefd10516a /repo/util | |
parent | e964fd9b52aabdfff452068e486f34cb467fca71 (diff) |
added nmap
Diffstat (limited to 'repo/util')
-rw-r--r-- | repo/util/nmap.xibuild | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/repo/util/nmap.xibuild b/repo/util/nmap.xibuild new file mode 100644 index 0000000..3d60959 --- /dev/null +++ b/repo/util/nmap.xibuild @@ -0,0 +1,17 @@ +#!/bin/bash + +MAKEDEPS=(make ) +DEPS=(libpcap lua pcre liblinear) + +PKG_VER=7.92 +SOURCE=https://nmap.org/dist/nmap-$PKG_VER.tar.bz2 +DESC="Network exploration and security auditing utility" + +build() { + ./configure --prefix=/usr + make +} + +package () { + make DESTDIR=$PKG_DEST install +} |