wok-next view nmap/receipt @ rev 20516

Add liblinear, up nmap, py3k -> python3
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Mar 22 04:47:38 2018 +0200 (2018-03-22)
parents d43bf7aae921
children 342b30daff76
line source
1 # SliTaz package receipt v2.
3 PACKAGE="nmap"
4 VERSION="7.70"
5 CATEGORY="security"
6 SHORT_DESC="The Network Mapper"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://nmap.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/basicnet/nmap.html"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="https://nmap.org/dist/$TARBALL"
15 BUILD_DEPENDS="libpcap-dev python-dev openssl-dev pcre-dev"
16 BUILD_DEPENDS="python openssl-dev libpcap-dev pcre-dev zlib-dev libssh2-dev \
17 liblinear-dev"
19 compile_rules() {
20 ./configure \
21 --with-liblua=included \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 genpkg_rules() {
28 copy @std
29 DEPENDS="liblinear libpcap libssh2 openssl pcre python zlib"
30 TAGS="network"
31 }