summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1a616913e61fd225aef561facede748863a4a2de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Maintainer: M0Rf30

pkgname=libpam-google-authenticator
pkgver=1.0
pkgrel=1
pkgdesc='PAM module for google authenticator app'
arch=('i686' 'x86_64')
url="https://code.google.com/p/google-authenticator/"
license=('Apache')
depends=('pam')
optdepends=('qrencode: scannable QR codes for google auth phone app')
conflicts=('google-authenticator-libpam-git' 'google-authenticator-libpam-hg')
source=("http://google-authenticator.googlecode.com/files/${pkgname}-${pkgver}-source.tar.bz2")
install=${pkgname}.install

build() {
  cd $srcdir/${pkgname}-${pkgver}
  make
}

package() {
  cd $srcdir/$pkgname-$pkgver
  install -D -m755 pam_google_authenticator.so "$pkgdir/usr/lib/security/pam_google_authenticator.so"
  install -D -m755 google-authenticator "$pkgdir/usr/bin/google-authenticator"
}

md5sums=('9db0194fcae26a67dcedbcd49397e95e')