21 lines
407 B
Bash
21 lines
407 B
Bash
|
# 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"
|
||
|
}
|