blob: 79e148b5f743cecaea20adb915b56826887841d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Decription: Exporte une interface gssapi qui appelle d'autres librairies gssapi
# URL: http://www.citi.umich.edu/projects/nfsv4/linux/
# Maintainer: NuTyX core team
# Packager: tnut at nutyx dot com
# Depends on: libgssglue
# Run on: libgssglue
name=librpcsecgss
version=0.19
release=1
source=( http://www.citi.umich.edu/projects/nfsv4/linux/$name/$name-$version.tar.gz )
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
}
|