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

44
rules/glib/host.bash Normal file
View File

@@ -0,0 +1,44 @@
version=\
(
'2.32.4'
)
url=\
(
"http://ftp.gnome.org/pub/gnome/sources/glib/2.32/glib-$version.tar.xz"
)
md5=\
(
'bf84fefd9c1a5b5a7a38736f4ddd674a'
)
maintainer=\
(
'Ricardo Martins <rasm@fe.up.pt>'
)
requires=\
(
'libffi/host'
'gettext/host'
'zlib/host'
'python_host/host'
)
configure()
{
PKG_CONFIG_PATH="$cfg_dir_toolchain/lib/pkgconfig" \
"./configure" \
--prefix="$cfg_dir_toolchain"
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}