blob: dc9645aaf9501140d433f0ab7efe6ecdc87fc9fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
pkgname=hulios-git
pkgver=1.0.0
pkgrel=1
pkgdesc="HULIOS - Rust-based transparent Tor proxy for Linux with full system traffic routing, DNS leak protection, and enhanced privacy"
arch=('x86_64')
url="https://github.com/ghaziwali/Hulios"
license=('GPL')
depends=('tor') # Add Tor
makedepends=('git' 'rust' 'cargo')
source=("git+https://github.com/ghaziwali/Hulios.git")
sha256sums=('SKIP')
build() {
cd "$srcdir/Hulios"
cargo build --release
}
package() {
cd "$srcdir/Hulios"
install -Dm755 target/release/hulios "$pkgdir/usr/bin/hulios"
}
|