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

36 lines
377 B
Bash

version=\
(
'2.4.6'
)
url=\
(
"http://ftpmirror.gnu.org/libtool/libtool-$version.tar.gz"
)
md5=\
(
'addf44b646ddb4e3919805aa88fa7c5e'
)
maintainer=\
(
"Ricardo Martins <rasm@oceanscan-mst.com>"
)
configure()
{
"../libtool-$version/configure" \
--prefix="$cfg_dir_toolchain"
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}