wok-next view gsasl/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gsasl"
4 VERSION="1.8.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Simple Authentication and Security Layer"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/gsasl/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="libgcrypt-dev"
15 SPLIT="$PACKAGE-dev $PACKAGE-lang"
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS &&
20 fix libtool &&
21 make $MAKEFLAGS &&
22 make DESTDIR=$install install
23 }
25 genpkg_rules()
26 {
27 case $PACKAGE in
28 (gsasl)
29 copy @std
30 DEPENDS="gnutls libcomerr3 libgcrypt libgpg-error
31 libidn libkrb5 libtasn1 ncurses readline zlib"
32 ;;
33 (*-dev)
34 copy @dev
35 ;;
36 (*-lang)
37 mkdir -p $fs/usr/share
38 cp -a $install/usr/share/locale $fs/usr/share
39 ;;
40 esac
41 }