blob: 8a7d0c62c7a5f43c8407c513f4fb033745a56cf7 (
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
|
# Description: Utilitaires pour le système de fichiers nfs
# URL: http://nfs.sourceforge.net
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libnfsidmap,libevent, keyutils
# Run on: libnfsidmap,libevent,keyutils
name=nfs-utils
version=1.2.4
release=1
source=(http://ftp.kernel.org/pub/linux/utils/nfs/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--enable-nfsv4 \
--enable-nfsv3 \
--with-tcp-wrappers \
--disable-gss \
--with-statedir=/var/lib/nfs
make
make DESTDIR=$PKG install
rm -r $PKG/{var,usr/share/man/man{7,8}}
mkdir -p $PKG/var/lib/nfs
}
|