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

36 lines
340 B
Bash
Raw Normal View History

2013-07-13 17:19:22 +01:00
version=\
(
2014-01-07 09:50:34 +00:00
'4.1.0'
2013-07-13 17:19:22 +01:00
)
url=\
(
2014-01-07 09:50:34 +00:00
"http://ftp.gnu.org/gnu/gawk/gawk-$version.tar.xz"
2013-07-13 17:19:22 +01:00
)
md5=\
(
2014-01-07 09:50:34 +00:00
'b18992ff8faf3217dab55d2d0aa7d707'
2013-07-13 17:19:22 +01:00
)
maintainer=\
(
2014-01-07 09:50:34 +00:00
'Ricardo Martins <rasm@fe.up.pt>'
2013-07-13 17:19:22 +01:00
)
configure()
{
./configure \
--prefix="$cfg_dir_toolchain"
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}