mirror of
https://github.com/0x5t4l1n/NexTOR_IP_CHANGER.git
synced 2026-05-26 19:56:30 +00:00
18 lines
437 B
Bash
18 lines
437 B
Bash
# Maintainer: 5t4l1n <nexulean@nexulean.info>
|
|
pkgname=nextor-ip-changer
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="A Python-based tool to change Tor IPs dynamically"
|
|
arch=('any')
|
|
url="https://github.com/Stalin-143/NexTOR_IP_CHANGER"
|
|
license=('MIT')
|
|
depends=('python' 'tor')
|
|
makedepends=('git')
|
|
source=("$pkgname::git+$url#tag=v$pkgver")
|
|
md5sums=('SKIP')
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname"
|
|
install -Dm755 NexTOR.py "$pkgdir/usr/bin/nextor"
|
|
}
|