mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
24 lines
761 B
Makefile
24 lines
761 B
Makefile
# 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)
|
|
|
|
PKG_NAME="nettle"
|
|
PKG_VERSION="3.4.1"
|
|
PKG_SHA256="f941cf1535cd5d1819be5ccae5babef01f6db611f9b5a777bae9c7604b8a92ad"
|
|
PKG_LICENSE="GPL2"
|
|
PKG_SITE="http://www.lysator.liu.se/~nisse/nettle"
|
|
PKG_URL="http://ftpmirror.gnu.org/gnu/nettle/nettle-$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain gmp"
|
|
PKG_LONGDESC="A low-level cryptographic library."
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-documentation \
|
|
--disable-openssl"
|
|
|
|
if target_has_feature neon; then
|
|
PKG_CONFIGURE_OPTS_TARGET+=" --enable-arm-neon"
|
|
fi
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf $INSTALL/usr/bin
|
|
}
|