nmap: Force old Python build process
This package isn't compatible with the new Python build process yet, so force the old build process for now. This also adds a call to Py3Build/Install, for when the new build process can be used. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
parent
39991fec1e
commit
da55275f3b
1 changed files with 7 additions and 1 deletions
|
@ -14,7 +14,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=nmap
|
||||
PKG_VERSION:=7.93
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
PKG_MAINTAINER:=Nuno Gonçalves <nunojpg@gmail.com>
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
|
@ -27,6 +27,7 @@ PKG_CPE_ID:=cpe:/a:nmap:nmap
|
|||
PKG_BUILD_PARALLEL:=1
|
||||
PKG_INSTALL:=1
|
||||
PYTHON3_PKG_BUILD:=0
|
||||
PYTHON3_PKG_FORCE_DISTUTILS_SETUP:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include ../../lang/python/python3-package.mk
|
||||
|
@ -150,6 +151,11 @@ define Build/Compile
|
|||
$(call Py3Build/Compile)
|
||||
endef
|
||||
|
||||
define Build/Install
|
||||
$(call Build/Install/Default,)
|
||||
$(call Py3Build/Install)
|
||||
endef
|
||||
|
||||
define Package/nmap/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/nmap $(1)/usr/bin/
|
||||
|
|
Loading…
Reference in a new issue