diff options
author | Simone Rota <sip@crux.nu> | 2008-03-11 15:44:09 +0000 |
---|---|---|
committer | Simone Rota <sip@crux.nu> | 2008-03-11 15:44:09 +0000 |
commit | e10271d7242fc4fb859756d7353897312f9a4239 (patch) | |
tree | 0a260e0d54529c67a7ad4039b66f8321bef07a32 /nmap/Pkgfile | |
parent | 48a3c38e20cb2e687e8bd2aafbce1891080e7b7b (diff) | |
download | opt-e10271d7242fc4fb859756d7353897312f9a4239.tar.gz opt-e10271d7242fc4fb859756d7353897312f9a4239.tar.xz |
nmap: updated to 4.53 (thanks to Pedja)
Diffstat (limited to 'nmap/Pkgfile')
-rw-r--r-- | nmap/Pkgfile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/nmap/Pkgfile b/nmap/Pkgfile index 5056bd67d..3f84a2275 100644 --- a/nmap/Pkgfile +++ b/nmap/Pkgfile @@ -4,17 +4,18 @@ # Packager: sten, nick dot steeves at shaw dot ca name=nmap -version=4.20 -release=1 +version=4.53 +release=2 source=(http://download.insecure.org/$name/dist/$name-$version.tar.bz2) build () { cd $name-$version - ./configure --prefix=/usr \ - --without-nmapfe \ - --with-libpcre=included \ - --with-libpcap=included + ./configure --prefix=/usr --libexecdir=/usr/lib \ + --with-libpcre=included --with-liblua=included \ + --with-libpcap=included --without-zenmap make - make prefix=$PKG/usr install - rm -rf $PKG/usr/share/applications + make DESTDIR=$PKG install + #install -m 644 docs/zenmap.1 $PKG/usr/man/man1 + rm -rf $PKG/usr/bin/uninstall_zenmap + rm -rf $PKG/usr/share/zenmap/{locale,docs} } |