Files
rexec/PKGBUILD

15 lines
300 B
Bash
Raw Permalink Normal View History

2023-08-14 19:10:34 +03:00
# Maintainer: AB <gh@hexor.ru>
pkgname=rexec
2023-08-31 22:51:03 +03:00
pkgver=some_ver
2023-08-14 19:10:34 +03:00
pkgrel=1
pkgdesc="Parallel SSH executor"
url="https://github.com/house-of-vanity/rexec"
license=("WTFPL")
arch=("x86_64")
package() {
2023-08-31 21:07:02 +03:00
install -Dm755 "$startdir/target/x86_64-unknown-linux-musl/release/rexec" "$pkgdir/usr/bin/rexec"
2023-08-14 19:10:34 +03:00
}
2023-08-31 21:07:02 +03:00