wok-next view gnutls/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gnutls"
4 VERSION="3.5.19"
5 CATEGORY="security"
6 SHORT_DESC="GNU Transport Layer Security Library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://gnutls.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://www.gnupg.org/ftp/gcrypt/gnutls/v${VERSION%.*}/$TARBALL"
13 TARBALL_SHA1="51b29b7e37467a765378f3c8e546a5c1bb2a5054"
15 BUILD_DEPENDS="nettle-dev libtasn1-dev libunistring-dev gettext-dev openssl-dev \
16 libidn2-dev unbound-dev p11-kit-dev zlib-dev"
17 SPLIT="lib$PACKAGE $PACKAGE $PACKAGE-dev"
19 CAT_libgnutls="security|shared libraries"
21 DEPENDS_libgnutls="gmp libidn2 libp11-kit libtasn1 libunistring nettle unbound \
22 zlib cacerts"
23 DEPENDS_std="lib$PACKAGE libtasn1"
24 DEPENDS_dev="$PACKAGE lib$PACKAGE gmp-dev libidn2-dev libtasn1-dev nettle-dev \
25 p11-kit-dev unbound-dev zlib-dev"
27 compile_rules() {
28 ./configure \
29 --enable-openssl-compatibility \
30 --with-default-trust-store-file="/etc/ssl/ca-bundle.crt" \
31 $CONFIGURE_ARGS &&
32 fix libtool &&
33 make &&
34 make install &&
35 make -C doc/reference install-data-local
36 }