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
2017-05-11 21:33:03 +01:00

44 lines
473 B
Bash

version=\
(
'3.1.5'
)
url=\
(
"http://www.mpfr.org/mpfr-$version/mpfr-$version.tar.bz2"
)
md5=\
(
'b1d23a55588e3b2a13e3be66bc69fd8d'
)
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
}