wok view gsasl/receipt @ rev 23535

updated python-pyasn1 (0.1.8 -> 0.4.8)
author Hans-G?nter Theisgen
date Mon Apr 06 16:15:12 2020 +0100 (2020-04-06)
parents f0a575154c06
children 71360a13cd94
line source
1 # SliTaz package receipt.
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/$PACKAGE/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="gnutls libcomerr3 libgcrypt libgpg-error libidn libkrb5
15 libtasn1 ncurses readline zlib"
16 BUILD_DEPENDS="libgcrypt-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make $MAKEFLAGS -j 1 &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }