diff options
author | root <root@rshg054.dnsready.net> | 2012-09-18 00:20:21 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-09-18 00:20:21 -0700 |
commit | 0eb0f7dcc1b8f07ad3f0eb5086eafba8f627967d (patch) | |
tree | 5e9211b5c62c88d15ad6652e0575105433af04dc /testing/nfsidmap | |
parent | d1d75c37c446dfbe9cbae503300e17f2973dbf44 (diff) |
Tue Sep 18 00:20:18 PDT 2012
Diffstat (limited to 'testing/nfsidmap')
-rw-r--r-- | testing/nfsidmap/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/nfsidmap/PKGBUILD b/testing/nfsidmap/PKGBUILD new file mode 100644 index 000000000..17f3e5580 --- /dev/null +++ b/testing/nfsidmap/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 166728 2012-09-17 05:20:12Z tpowa $ +# Maintainer: +# Contributor: Judd <jvinet@zeroflux.org> + +pkgname=nfsidmap +pkgver=0.25 +pkgrel=1 +pkgdesc="Library to help mapping IDs, mainly for NFSv4" +arch=('i686' 'x86_64') +url="http://www.citi.umich.edu/projects/nfsv4/linux/" +depends=('glibc' 'libldap>=2.4.18') +license=('custom:nfsidmap') +options=(!libtool) +source=(http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/libnfsidmap-$pkgver.tar.gz) + +build() { + cd $srcdir/lib$pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc + make +} + +package() { + cd $srcdir/lib$pkgname-$pkgver + make DESTDIR=$pkgdir install + + # install license + install -Dm644 COPYING $pkgdir/usr/share/licenses/nfsidmap/LICENSE +} +md5sums=('2ac4893c92716add1a1447ae01df77ab') |