summaryrefslogtreecommitdiff
path: root/extra/pam_ldap/PKGBUILD
blob: b3418220ae0255df4d51c92a08a5fae615511d36 (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
# $Id: PKGBUILD 87842 2010-08-18 13:07:56Z jgc $
# Maintainer: Paul Mattal <paul@archlinux.org>
# Contributor: Comete <la_comete@tiscali.fr>
pkgname=pam_ldap
pkgver=185
pkgrel=1
pkgdesc="LDAP authentication module for the PAM framework"
arch=(i686 x86_64)
url="http://www.padl.com/OSS/pam_ldap.html"
license=('LGPL')
depends=('libldap>=2.4.22' 'pam')
backup=(etc/pam_ldap.conf)
options=(!makeflags)
source=(http://www.padl.com/download/${pkgname}-${pkgver}.tar.gz)
md5sums=('639260f0c81d57a6fcbd1cb47dd6c5e7')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  ./configure --libdir=/lib \
      --with-ldap-conf-file=/etc/pam_ldap.conf \
      --mandir=/usr/share/man
  PATH="${PATH}:${srcdir}/${pkgname}-${pkgver}" make
  make DESTDIR="${pkgdir}" install
  mv "${pkgdir}/etc/ldap.conf" "${pkgdir}/etc/pam_ldap.conf"
}