You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
716 B
19 lines
716 B
# Maintainer: Patrick Lühne <patrick@luehne.de> |
|
|
|
pkgname=random-password |
|
pkgver=1.0.1 |
|
pkgrel=1 |
|
pkgdesc='Generate random passwords' |
|
arch=('any') |
|
url='https://git.luehne.de/patrick/random-password/' |
|
license=('MIT') |
|
source=('random-password' |
|
'LICENSE.md') |
|
sha512sums=('8cc742a0bd8b1726f7da9121f45a78c628b6b9429824cb2a2482efe2dfdebb89e43e655ef08162798784038006a3c8349d640ee4814a635810b6a660fd63f393' |
|
'86caa9074cb188021387bc2c40206346d3ccdfdeff3bc75728ff7712078d8584eed3dfb9a63cacadc4ae3cde54c0006b356ee6fabcffb2d8d18ef9ba46e1f193') |
|
|
|
package() { |
|
install -d ${pkgdir}/usr/bin/ |
|
install random-password ${pkgdir}/usr/bin/ |
|
install -D -m644 LICENSE.md ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE |
|
}
|
|
|