blob: fb740d84747a072fc341149fa67beeae24fe2a13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Description: Implementation du framework Simple Authentication and Security Layer.
# URL: http://www.gnu.org/software/gsasl/
# Maintainer: NuTyX core team
# Packager: piernov <piernov@piernov.org>
name=libgsasl
version=1.6.1
release=1
source=(http://ftp.gnu.org/gnu/gsasl/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|