This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
lsts_glued/rules/mpfr/host.bash

44 lines
473 B
Bash

version=\
(
'3.1.3'
)
url=\
(
"http://www.mpfr.org/mpfr-$version/mpfr-$version.tar.bz2"
)
md5=\
(
'5fdfa3cfa5c86514ee4a241a1affa138'
)
maintainer=\
(
'Ricardo Martins <rasm@fe.up.pt>'
)
requires=\
(
'gmp/host'
)
configure()
{
./configure \
--prefix="$cfg_dir_toolchain" \
--with-gmp="$cfg_dir_toolchain" \
--disable-shared \
--enable-static
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}