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
Raw Normal View History

2013-07-13 17:19:22 +01:00
version=\
(
2017-05-11 21:36:43 +01:00
'6.1.2'
2013-07-13 17:19:22 +01:00
)
url=\
(
2015-02-03 17:33:43 +00:00
"http://ftp.gnu.org/pub/gnu/gmp/gmp-$version.tar.bz2"
2013-07-13 17:19:22 +01:00
)
md5=\
(
2017-05-11 21:36:43 +01:00
'8ddbb26dc3bd4e2302984debba1406a5'
2013-07-13 17:19:22 +01:00
)
maintainer=\
(
2015-02-03 17:33:43 +00:00
'Ricardo Martins <rasm@oceanscan-mst.com>'
2013-07-13 17:19:22 +01:00
)
configure()
{
./configure \
2015-02-03 17:33:43 +00:00
--prefix="$cfg_dir_toolchain" \
2013-07-13 17:19:22 +01:00
--disable-shared \
--enable-static
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}