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

33 lines
358 B
Bash

version=\
(
"2.7.8"
)
url=\
(
"ftp://xmlsoft.org/libxml2/libxml2-$version.tar.gz"
)
md5=\
(
"8127a65e8c3b08856093099b52599c86"
)
configure()
{
../libxml2-$version/configure \
--prefix="${cfg_dir_toolchain}" \
--disable-shared \
--enable-static
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}