wok-next view nmap/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents f48456621a9d
children
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="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://nmap.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/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=$install install
25 }
27 genpkg_rules() {
28 copy @std
29 DEPENDS="liblinear libpcap libpcre libssh2 openssl python zlib"
30 TAGS="network"
31 }