summaryrefslogtreecommitdiff
path: root/testing/pam_ldap/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/pam_ldap/PKGBUILD')
-rw-r--r--testing/pam_ldap/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/testing/pam_ldap/PKGBUILD b/testing/pam_ldap/PKGBUILD
deleted file mode 100644
index c74c181cb..000000000
--- a/testing/pam_ldap/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $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"
-}