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/packages/gmp/host.bash
2013-07-13 17:19:22 +01:00

38 lines
405 B
Bash

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