updated on Mon Jan 16 00:01:41 UTC 2012
[aur-mirror.git] / pwauth / PKGBUILD
blob55ffc1e15e3d854581be9c9f9cf7cacd3c40a602
1 # Contributor: Graziano Giuliani <graziano.giuliani@poste.it>
2 # Maintainer: Pierre Bourdon <delroth@gmail.com>
4 pkgname=pwauth
5 pkgver=2.3.8
6 pkgrel=2
7 pkgdesc="An authenticator designed to be used for web authentication"
8 arch=(i686 x86_64)
9 url="http://code.google.com/p/pwauth/"
10 license=("BSD")
11 groups=()
12 depends=()
13 makedepends=()
14 provides=()
15 conflicts=()
16 replaces=()
17 backup=()
18 options=()
19 install=
20 source=(http://pwauth.googlecode.com/files/$pkgname-$pkgver.tar.gz
21         nobody-uid.patch)
22 noextract=()
24 md5sums=('b41578a03d3876ddb2c4c550f88ede8c'
25          '01ca182a4a4ab21f092af6975b49bb8f')
27 build() {
28   cd $startdir/src/$pkgname-$pkgver
29   patch -Np1 -i ../nobody-uid.patch || return 1
30   make || return 1
31   install -D -m755 pwauth $startdir/pkg/sbin/pwauth
32   chmod +s $startdir/pkg/sbin/pwauth
35 # vim:set ts=2 sw=2 et: