blob: 2efeebdd2117909950a106d716b648abae09622c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: 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
name=libgssglue
version=0.1
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
}
|