8f0bfde778
* Update misc packages for GCC 13. * Thanks to @CoreELEC (Python 3), @ArchLinux (lrps2), and @AmberELEC (EmulationStation).
18 lines
823 B
Makefile
18 lines
823 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
PKG_NAME="mpfr"
|
|
PKG_VERSION="4.2.1"
|
|
PKG_LICENSE="LGPL"
|
|
PKG_SITE="http://www.mpfr.org/"
|
|
PKG_URL="http://ftp.gnu.org/gnu/mpfr/${PKG_NAME}-${PKG_VERSION}.tar.xz"
|
|
PKG_DEPENDS_HOST="ccache:host gmp:host"
|
|
PKG_LONGDESC="A C library for multiple-precision floating-point computations with exact rounding."
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="--target=${TARGET_NAME} \
|
|
--enable-static --disable-shared \
|
|
--prefix=${TOOLCHAIN} \
|
|
--with-gmp-lib=${TOOLCHAIN}/lib \
|
|
--with-gmp-include=${TOOLCHAIN}/include"
|