mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
news:
- a2be57f050
of note - for aarch64:
New ARM64 implementation of AES, GCM, Chacha, SHA1 and
SHA256, for processors supporting crypto extensions. Great
speedups, and fat builds are supported. Contributed by
Mamone Tarsha.
24 lines
758 B
Makefile
24 lines
758 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.8"
|
|
PKG_SHA256="7576c68481c198f644b08c160d1a4850ba9449e308069455b5213319f234e8e6"
|
|
PKG_LICENSE="GPL2"
|
|
PKG_SITE="http://www.lysator.liu.se/~nisse/nettle"
|
|
PKG_URL="https://ftp.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
|
|
}
|