summaryrefslogtreecommitdiff
path: root/testing/pam_ldap/PKGBUILD
blob: c74c181cbdb0f69d14997b452b671ebbe584f764 (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
28
29
30
31
32
33
34
# $Id: PKGBUILD 157514 2012-04-28 21:41:11Z dreisner $
# Maintainer:
# Contributor: Comete <la_comete@tiscali.fr>

pkgname=pam_ldap
pkgver=186
pkgrel=3
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' 'pam')
backup=('etc/pam_ldap.conf')
options=('!makeflags')
source=("http://www.padl.com/download/${pkgname}-${pkgver}.tar.gz")
md5sums=('58c8689921c5c4578363438acd8503c2')

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
}

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  make DESTDIR="${pkgdir}" install
  mv "${pkgdir}/etc/ldap.conf" "${pkgdir}/etc/pam_ldap.conf"

  # move /lib to /usr/lib
  mv "${pkgdir}/lib/security" "${pkgdir}/usr/lib"
  rmdir "${pkgdir}/lib"
}