mirror of
https://github.com/archlinux/aur.git
synced 2026-02-20 04:00:37 +01:00
update to 1.0.1
This commit is contained in:
commit
e30391c520
2 changed files with 57 additions and 0 deletions
30
.SRCINFO
Normal file
30
.SRCINFO
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
pkgbase = ids-ips-tool
|
||||
pkgver = 1.0.1
|
||||
pkgrel = 1
|
||||
url = https://github.com/Bangkah/IDS-IPS-Tool
|
||||
arch = any
|
||||
license = MIT
|
||||
makedepends = git
|
||||
makedepends = python-setuptools
|
||||
depends = python
|
||||
depends = python-scapy
|
||||
depends = python-fastapi
|
||||
depends = python-uvicorn
|
||||
depends = python-jinja
|
||||
depends = python-watchdog
|
||||
depends = python-notify2
|
||||
depends = python-pandas
|
||||
depends = python-numpy
|
||||
depends = python-scikit-learn
|
||||
depends = python-requests
|
||||
depends = python-pyotp
|
||||
depends = python-passlib
|
||||
depends = python-python-jose
|
||||
depends = python-multipart
|
||||
depends = iptables
|
||||
depends = nftables
|
||||
depends = ufw
|
||||
source = ids-ips-tool-1.0.1.tar.gz::https://github.com/Bangkah/IDS-IPS-Tool/archive/refs/tags/v1.0.1.tar.gz
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = ids-ips-tool
|
||||
27
PKGBUILD
Normal file
27
PKGBUILD
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Maintainer: Bangkah <mdhyaulatha@gmail.com>
|
||||
pkgname=ids-ips-tool
|
||||
desc="Modular IDS/IPS Tool with Real-time Dashboard"
|
||||
pkgver=1.0.1
|
||||
pkgrel=1
|
||||
arch=("any")
|
||||
url="https://github.com/Bangkah/IDS-IPS-Tool"
|
||||
license=("MIT")
|
||||
depends=(
|
||||
'python' 'python-scapy' 'python-fastapi' 'python-uvicorn' 'python-jinja' 'python-watchdog' 'python-notify2'
|
||||
'python-pandas' 'python-numpy' 'python-scikit-learn' 'python-requests' 'python-pyotp' 'python-passlib'
|
||||
'python-python-jose' 'python-multipart' 'iptables' 'nftables' 'ufw'
|
||||
)
|
||||
makedepends=('git' 'python-setuptools')
|
||||
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/IDS-IPS-Tool-$pkgver"
|
||||
python setup.py build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/IDS-IPS-Tool-$pkgver"
|
||||
python setup.py install --root="$pkgdir" --optimize=1
|
||||
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue