distribution/packages/security/gnutls/package.mk

32 lines
1.3 KiB
Makefile
Raw Normal View History

2022-02-05 14:23:32 +00:00
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
# Copyright (C) 2023-present - The JELOS Project (https://github.com/JustEnoughLinuxOS)
2022-02-05 14:23:32 +00:00
PKG_NAME="gnutls"
PKG_VERSION="3.8.1"
2022-02-05 14:23:32 +00:00
PKG_LICENSE="LGPL2.1"
PKG_SITE="https://gnutls.org"
PKG_URL="https://www.gnupg.org/ftp/gcrypt/gnutls/v${PKG_VERSION:0:3}/${PKG_NAME}-${PKG_VERSION}.tar.xz"
2023-05-09 19:21:47 +00:00
PKG_DEPENDS_TARGET="toolchain libidn2 nettle zlib"
2022-02-05 14:23:32 +00:00
PKG_LONGDESC="A library which provides a secure layer over a reliable transport layer."
PKG_CONFIGURE_OPTS_TARGET="--disable-doc \
--disable-full-test-suite \
--disable-guile \
--disable-libdane \
--disable-padlock \
2022-04-14 11:56:57 +00:00
--disable-rpath \
2022-02-05 14:23:32 +00:00
--disable-tests \
--disable-tools \
--disable-valgrind-tests \
--with-idn \
--with-included-libtasn1 \
--with-included-unistring \
--without-p11-kit \
--without-tpm"
2022-04-14 11:56:57 +00:00
post_configure_target() {
libtool_remove_rpath libtool
}