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=\
(
2015-02-03 17:33:43 +00:00
'5.0.4'
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=\
(
2015-02-03 17:33:43 +00:00
'50c3edcb7c9438e04377ee9a1a061b79'
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
}