genpw/PKGBUILD

21 lines
407 B
Bash
Raw Normal View History

2023-06-22 07:46:21 +00:00
# Maintainer: Sebastian Hugentobler <shu@vanwa.ch>
pkgname=genpw
pkgver=0.1.0
pkgrel=1
pkgdesc="Generate random passwords of a specified length."
arch=("any")
url="https://code.vanwa.ch"
license=('MIT')
depends=("coreutils")
source=(
"genpw"
)
sha256sums=("a45fcc797851b494de1a3f21e10435a754d955e340a8f3a686b7f83fca85ec9a")
package() {
cd "$srcdir/"
install -Dm 755 genpw "$pkgdir/usr/bin/genpw"
}