blob: 25dfab5d1de17c2628133daa4d943cdbb0ff4727 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# 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: libevent
# Run on: portmap
name=libnfs
version=1.3.0
release=1
source=()
build() {
git clone git://github.com/sahlberg/libnfs
cd $name
autoreconf -vif
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|