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/gmp/host.bash

38 lines
405 B
Bash

version=\
(
'5.0.4'
)
url=\
(
"http://ftp.gnu.org/pub/gnu/gmp/gmp-$version.tar.bz2"
)
md5=\
(
'50c3edcb7c9438e04377ee9a1a061b79'
)
maintainer=\
(
'Ricardo Martins <rasm@oceanscan-mst.com>'
)
configure()
{
./configure \
--prefix="$cfg_dir_toolchain" \
--disable-shared \
--enable-static
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}