GLUED: renamed packages to rules, cfg_dir_packages to cfg_dir_rules.

This commit is contained in:
Ricardo Martins
2014-02-02 09:53:29 +00:00
parent 6420cb1823
commit eaf0c7d347
354 changed files with 7 additions and 7 deletions

32
rules/libxml2/host.bash Normal file
View File

@@ -0,0 +1,32 @@
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
}