Imported sources from subversion.

This commit is contained in:
Ricardo Martins
2013-07-13 17:19:22 +01:00
commit 12d63d1569
455 changed files with 69857 additions and 0 deletions

35
packages/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
}