core/nfsidmap/PKGBUILD

25 lines
631 B
Bash
Raw Normal View History

2010-03-13 23:25:19 +08:00
pkgname=nfsidmap
2015-05-26 06:07:07 +08:00
pkgver=0.26
pkgrel=1
2010-03-13 23:25:19 +08:00
pkgdesc="Library to help mapping IDs, mainly for NFSv4"
2015-05-26 06:07:07 +08:00
arch=('x86_64')
2010-03-13 23:25:19 +08:00
url="http://www.citi.umich.edu/projects/nfsv4/linux/"
depends=('glibc' 'libldap>=2.4.18')
license=('custom:nfsidmap')
2015-05-26 06:07:07 +08:00
source=(https://fedorapeople.org/~steved/libnfsidmap/$pkgver/libnfsidmap-$pkgver.tar.bz2)
md5sums=('2c0cf0e2b1665d51fa9a783679494888')
2010-03-13 23:25:19 +08:00
build() {
cd $srcdir/lib$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc
2015-05-26 06:07:07 +08:00
make
2010-03-13 23:25:19 +08:00
}
2015-05-26 06:07:07 +08:00
package() {
cd $srcdir/lib$pkgname-$pkgver
make DESTDIR=$pkgdir install
# install license
install -Dm644 COPYING $pkgdir/usr/share/licenses/nfsidmap/LICENSE
}