0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2024-12-15 07:29:46 +00:00
Andre Heider 74efdeaad4 libxcrypt: add mold as host dependency
Required since libxcrypt is now part of the toolchain.

Signed-off-by: Andre Heider <a.heider@gmail.com>
2024-01-05 10:14:37 +01:00

18 lines
654 B
Makefile

# SPDX-License-Identifier: GPL-2.0-only
# Copyright (C) 2023-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="libxcrypt"
PKG_VERSION="4.4.36"
PKG_SHA256="e5e1f4caee0a01de2aee26e3138807d6d3ca2b8e67287966d1fefd65e1fd8943"
PKG_LICENSE="LGPL-2.1"
PKG_SITE="https://github.com/besser82/libxcrypt"
PKG_URL="https://github.com/besser82/libxcrypt/releases/download/v${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}.tar.xz"
PKG_DEPENDS_TARGET="glibc"
PKG_LONGDESC="Extended crypt library for descrypt, md5crypt, bcrypt, and others"
if [ "${MOLD_SUPPORT}" = "yes" ]; then
PKG_DEPENDS_TARGET+=" mold:host"
fi
PKG_CONFIGURE_OPTS_TARGET="--disable-obsolete-api"