29 lines
974 B
Text
29 lines
974 B
Text
# Template file for 'cracklib'
|
|
pkgname=cracklib
|
|
version=2.8.18
|
|
revision=5
|
|
homepage="http://cracklib.sourceforge.net/"
|
|
distfiles="${SOURCEFORGE_SITE}/cracklib/$pkgname-$version.tar.gz"
|
|
build_style=gnu-configure
|
|
short_desc="Password Checking Library"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="LGPL-2.1"
|
|
checksum=2b072f67f7267358459424c3ed70f7f5b70919118e6504a90d3bce37a67c1454
|
|
long_desc="
|
|
cracklib is a password checking library. It can check a given password
|
|
against a dictionary file to find weak passwords (vulnerable to
|
|
dictionary attacks)."
|
|
|
|
subpackages="$pkgname-devel $pkgname-python"
|
|
Add_dependency build python-devel
|
|
Add_dependency build zlib-devel
|
|
|
|
post_install() {
|
|
# Create default small wordlist.
|
|
vmkdir lib/cracklib
|
|
sh ./util/cracklib-format dicts/cracklib-small \
|
|
| sh ./util/cracklib-packer ${DESTDIR}/lib/cracklib/pw_dict
|
|
gzip -9 ${DESTDIR}/lib/cracklib/pw_dict.pwd
|
|
# remove unused file.
|
|
rm -f ${DESTDIR}/usr/share/cracklib/cracklib-small
|
|
}
|