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

36 lines
340 B
Bash

version=\
(
'4.1.0'
)
url=\
(
"http://ftp.gnu.org/gnu/gawk/gawk-$version.tar.xz"
)
md5=\
(
'b18992ff8faf3217dab55d2d0aa7d707'
)
maintainer=\
(
'Ricardo Martins <rasm@fe.up.pt>'
)
configure()
{
./configure \
--prefix="$cfg_dir_toolchain"
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}