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

35
rules/cmake/host.bash Normal file
View File

@@ -0,0 +1,35 @@
version=\
(
"2.8.8"
)
version_major=\
(
"$(echo $version | cut -d. -f1-2)"
)
url=\
(
"http://www.cmake.org/files/v$version_major/cmake-$version.tar.gz"
)
md5=\
(
"ba74b22c788a0c8547976b880cd02b17"
)
configure()
{
./configure \
--prefix="$cfg_dir_toolchain"
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}