mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 16:21:38 +01:00
A utility for generating secure passphrases. Implements several methods for passphrase generation, including the Diceware method with 8192 word dictionary compiled in the executable. http://linux.die.net/man/1/secpwgen As it builds against OpenSSL you need to run haveged if you use this. Used in OpenSUSE & Midnight BSD.
58 lines
1.8 KiB
Plaintext
58 lines
1.8 KiB
Plaintext
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
|
|
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
|
|
pkgname=secpwgen
|
|
pkgver=1.3
|
|
pkgrel=0
|
|
pkgdesc="secure password generator"
|
|
url="http://zvrba.net/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends=""
|
|
depends_dev="openssl-dev"
|
|
makedepends="$depends_dev"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/itoffshore/$pkgname/archive/v$pkgver.tar.gz
|
|
make-openssl.patch
|
|
"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
mv Makefile.proto Makefile || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
mkdir -p "$pkgdir"/usr/bin
|
|
mkdir -p "$pkgdir"/usr/share/man/man1
|
|
install -m 755 secpwgen "$pkgdir"/usr/bin || return 1
|
|
install -m 644 secpwgen.1 "$pkgdir"/usr/share/man/man1 || return 1
|
|
# post-install message
|
|
mkdir -p "$pkgdir/usr/share/doc/$pkgname"
|
|
cat > $pkgdir/usr/share/doc/$pkgname/README.alpine <<EOF
|
|
To increase entropy in your system:
|
|
-----------------------------------
|
|
apk add haveged
|
|
rc-update add haveged
|
|
rc-service haveged start
|
|
EOF
|
|
}
|
|
|
|
md5sums="c53da1931bb480e77691c7602fc28408 secpwgen-1.3.tar.gz
|
|
0b54c4a66ae423d3f7f28b8f091f071a make-openssl.patch"
|
|
sha256sums="ae2e33db5c94a18d55ad50563b026f3aecd9d4f6ebb19b2dcc9a68625fd1f509 secpwgen-1.3.tar.gz
|
|
8b8a3b308eb75de5c54e8da0677280ef326f256c18c5e5ac816723d969e3f95a make-openssl.patch"
|
|
sha512sums="a18b5405ae5f6a62c25dd61654ea897b2f099fa459530bc6cfdbe79d96bfa6b4943e4ba2456ad5355d37cababe585299638afe56ff1a9fc649b6df0b7aa1e269 secpwgen-1.3.tar.gz
|
|
d9e4f84ab0d557ecc4c57152ea78fd2c610f36d2ea4ae87f690944ac454497cb450e693ab4726209b58ade32e3c1f6f2bb74fec47b2a766e68eed56bfcfbc8d0 make-openssl.patch"
|