From 781ab01280e329ffd1022b34e39fbc785af48d83 Mon Sep 17 00:00:00 2001 From: Muhammad Dhiyaul Atha Date: Fri, 6 Feb 2026 19:06:29 +0700 Subject: [PATCH] rebrand: athaguard, fix deps, ready for AUR --- PKGBUILD | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 7d423263599c..7e3d26e0d4c6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,27 +1,27 @@ # Maintainer: Bangkah -pkgname=ids-ips-tool -desc="Modular IDS/IPS Tool with Real-time Dashboard" +pkgname=athaguard +desc="AthaGuard - Modular IDS/IPS Tool with Real-time Dashboard" pkgver=1.0.1 pkgrel=1 arch=("any") -url="https://github.com/Bangkah/IDS-IPS-Tool" +url="https://github.com/Bangkah/athaguard" 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' + '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" + cd "$srcdir/athaguard-$pkgver" python setup.py build } package() { - cd "$srcdir/IDS-IPS-Tool-$pkgver" + cd "$srcdir/athaguard-$pkgver" python setup.py install --root="$pkgdir" --optimize=1 install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }