contrib/rustscan/Pkgfile

23 lines
606 B
Plaintext

# Description: Faster Nmap Scanning with Rust
# URL: https://github.com/brandonskerritt/RustScan
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: nmap rust
name=rustscan
version=2.1.0
release=1
source=(https://github.com/brandonskerritt/RustScan/archive/$version/$name-$version.tar.gz)
build() {
cd RustScan-$version
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
cargo update
cargo fetch
cargo build --release --locked
install -Dt $PKG/usr/bin target/release/rustscan
}