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

39 lines
445 B
Bash
Raw Normal View History

2013-07-13 17:19:22 +01:00
version=\
(
'3.82'
)
url=\
(
"http://ftp.gnu.org/gnu/make/make-$version.tar.bz2"
)
md5=\
(
'1a11100f3c63fcf5753818e59d63088f'
)
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
2015-04-07 13:46:58 +01:00
cd "$cfg_dir_toolchain/bin" && ln -s make gmake
2013-07-13 17:19:22 +01:00
}