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
2013-07-13 17:19:22 +01:00

36 lines
341 B
Bash

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