PKGBUILDs/core/cracklib/PKGBUILD

24 lines
725 B
Bash
Raw Normal View History

2009-09-26 14:35:50 +00:00
# Maintainer: Krzysztof "hiciu" Warzecha <kwarzecha7@gmail.com>
pkgname=cracklib
pkgver=2.8.13
pkgrel=1
pkgdesc="Password Checking Library"
arch=(arm)
license=('GPL')
url="http://sourceforge.net/projects/cracklib"
groups=('base')
depends=('glibc')
options=('!libtool')
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr --without-python
make || return 1
mkdir -p $startdir/pkg/usr/share/dict
make DESTDIR=$startdir/pkg install
cp dicts/cracklib-small $startdir/pkg/usr/share/dict
sh ./util/cracklib-format dicts/cracklib-small \
| sh ./util/cracklib-packer $startdir/pkg/usr/share/cracklib/pw_dict
}