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

36 lines
373 B
Bash

version=\
(
'0.18.3.1'
)
url=\
(
"http://ftp.gnu.org/pub/gnu/gettext/gettext-$version.tar.gz"
)
md5=\
(
'3fc808f7d25487fc72b5759df7419e02'
)
maintainer=\
(
'Ricardo Martins <rasm@fe.up.pt>'
)
configure()
{
"../gettext-$version/configure" \
--prefix="$cfg_dir_toolchain"
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}