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/libiconv/default.bash

41 lines
549 B
Bash

version=\
(
"1.13"
)
url=\
(
"http://ftp.gnu.org/gnu/libiconv/libiconv-$version.tar.gz"
)
md5=\
(
"048032a3032ebd182150bdee30a5d533"
)
maintainer=\
(
"Ricardo Martins <rasm@fe.up.pt>"
)
configure()
{
../libiconv-$version/configure \
--prefix="$cfg_dir_toolchain_sysroot/usr" \
--disable-static \
--enable-shared \
--target=$cfg_target_canonical \
--host=$cfg_target_canonical \
--build=$cfg_host_canonical
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}