From f7399348b7effef8579e27708d6b36ce8b5ad552 Mon Sep 17 00:00:00 2001 From: Michael Mason Date: Mon, 23 Feb 2009 22:22:10 +0000 Subject: [PATCH] extra/cracklib Initial Commit --- extra/cracklib/APKBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 extra/cracklib/APKBUILD diff --git a/extra/cracklib/APKBUILD b/extra/cracklib/APKBUILD new file mode 100644 index 00000000000..1e67f8fed23 --- /dev/null +++ b/extra/cracklib/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Michael Mason +# Maintainer: Michael Mason +pkgname=cracklib +pkgver=2.8.13 +pkgrel=0 +pkgdesc="A library used to enforce strong passwords" +url="http://sourceforge.net/projects/cracklib" +license="GPL" +depends="uclibc" +makedepends="" +install= +subpackages="" +source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz + " +build() { + + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --without-python \ + --disable-nls \ + --with-default-dict + make -j1 all || return 1 + make -j1 DESTDIR="$pkgdir" install + +} + +md5sums="5beb4c6b3c31c83fc98c4c225b25cd94 cracklib-2.8.13.tar.gz"