diff options
Diffstat (limited to 'community-testing/pam_pwcheck/PKGBUILD')
-rw-r--r-- | community-testing/pam_pwcheck/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/community-testing/pam_pwcheck/PKGBUILD b/community-testing/pam_pwcheck/PKGBUILD new file mode 100644 index 000000000..5457ef37a --- /dev/null +++ b/community-testing/pam_pwcheck/PKGBUILD @@ -0,0 +1,20 @@ +# $Id: PKGBUILD 70060 2012-04-28 21:41:52Z dreisner $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=pam_pwcheck +pkgver=3.9 +pkgrel=4 +pkgdesc="A password strength checking module for PAM-aware password changing programs" +arch=(i686 x86_64) +url="http://www.thkukuk.de/pam/pam_pwcheck/" +depends=('pam') +license=('GPL') +source=(ftp://ftp.suse.com/pub/people/kukuk/pam/pam_pwcheck/pam_pwcheck-$pkgver.tar.bz2) +md5sums=('27be63338af88d14610d182b6a161cd1') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr --mandir=/usr/share/man --libdir=/usr/lib + make + make DESTDIR=$pkgdir install +} |