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

38 lines
397 B
Bash

version=\
(
'5.1'
)
url=\
(
"http://ftp.gnu.org/gnu/texinfo/texinfo-$version.tar.gz"
)
md5=\
(
'54e250014fe698fb4832016158747c03'
)
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
}