# Maintainer: zxp19821005 # Contributor : Yigit Sever # Contributor : Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/) # Contributor : mickael9 pkgname=wapiti pkgver=3.1.7 pkgrel=4 pkgdesc='Comprehensive web app vulnerability scanner written in Python' arch=('any') url="https://wapiti-scanner.github.io" _ghurl="https://github.com/wapiti-scanner/wapiti" license=('GPL-2.0-only') depends=( 'python>=3.9' 'python-cryptography' 'python-soupsieve' 'python-mako' 'python-setuptools' 'python-beautifulsoup4' 'python-httpx' ) makedepends=( 'python-setuptools' 'git' ) optdepends=( 'python-requests-kerberos: Kerberos authentication' 'python-requests-ntlm: NTLM authentication' ) options=( 'zipman' ) source=( "${pkgname}.git::git+${_ghurl}.git#tag=${pkgver}" ) sha256sums=('SKIP') package() { cd "${srcdir}/${pkgname}.git" # Use pip to install the package into the pkg directory python -m pip install . --no-deps --ignore-installed --no-warn-script-location \ --prefix=/usr --root="${pkgdir}" }