mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
614 B
Bash
21 lines
614 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
pkgname=pam_pwcheck
|
|
pkgver=3.9
|
|
pkgrel=1
|
|
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 $startdir/src/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
/usr/bin/make || return 1
|
|
/usr/bin/make DESTDIR=$startdir/pkg install
|
|
}
|