diff options
author | root <root@rshg047.dnsready.net> | 2011-05-12 22:37:15 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-05-12 22:37:15 +0000 |
commit | 1982ae8d63ab142a2a16bdf1b055110d9c9f40fd (patch) | |
tree | dbb34352753ef1b7e1893aa225490fad5306ba22 /community/pam-krb5 | |
parent | 5c25d28847bcae8c3c51c1babcb09d36c7fbddba (diff) |
Thu May 12 22:37:08 UTC 2011
Diffstat (limited to 'community/pam-krb5')
-rw-r--r-- | community/pam-krb5/PKGBUILD | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/community/pam-krb5/PKGBUILD b/community/pam-krb5/PKGBUILD index c31c91ca4..5c9798514 100644 --- a/community/pam-krb5/PKGBUILD +++ b/community/pam-krb5/PKGBUILD @@ -1,18 +1,16 @@ -# $Id: PKGBUILD 36761 2011-01-07 19:49:35Z kchen $ +# $Id: PKGBUILD 46339 2011-05-05 11:43:20Z spupykin $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Contributor: Ryan Corder <ryanc@greengrey.org> pkgname=pam-krb5 pkgver=4.4 -pkgrel=1 +pkgrel=2 pkgdesc='A PAM module providing Kerberos v5 support.' arch=('i686' 'x86_64') url='http://www.eyrie.org/~eagle/software/pam-krb5/' license=('custom') options=('!libtool') - -depends=('heimdal' 'pam') - +depends=('krb5' 'pam') source=("http://archives.eyrie.org/software/kerberos/$pkgname-$pkgver.tar.gz") md5sums=('a3f9a414fef102cd815a763c965b315c') @@ -20,6 +18,11 @@ build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr \ --enable-reduced-depends - make; make DESTDIR=$pkgdir install + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR=$pkgdir install install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE } |