blob: 818a690bfac0492add2b8d313e6480cbe06701b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Maintainer: 5amu <v.casalino@protonmail.com>
pkgname=staresc
pkgver=2
pkgrel=6
_version="${pkgver}.${pkgrel}"
pkgdesc="Make SSH/TNT PTs Great Again!"
arch=( 'x86_64' )
url="https://github.com/staresc/staresc"
license=( 'GPLv3' )
depends=( 'python' 'python-paramiko' 'python-yaml' 'python-xlsxwriter' 'python-tabulate' 'python-tqdm')
source=("$pkgname-$_version.tar.gz::${url}/archive/refs/tags/v${_version}.tar.gz")
sha256sums=('SKIP')
package() {
cd "$srcdir/$pkgname-$_version"
python -m pip install --no-deps --root="$pkgdir" .
}
|