summaryrefslogtreecommitdiff
path: root/recipes/toolchain
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-06-04 13:02:31 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-06-04 13:02:31 +0200
commit56ae6c6e7e7862b18b40f40c17bfcb10b997a4d6 (patch)
tree5642267114f4fd9477690a8ecd0ed832bae2876d /recipes/toolchain
parent50f6e167942e12172b7c8a35631d55ca78c91b82 (diff)
cloog: add missing recipe
Diffstat (limited to 'recipes/toolchain')
-rw-r--r--recipes/toolchain/cloog.recipe13
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes/toolchain/cloog.recipe b/recipes/toolchain/cloog.recipe
new file mode 100644
index 00000000..287ca65d
--- /dev/null
+++ b/recipes/toolchain/cloog.recipe
@@ -0,0 +1,13 @@
+# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
+
+
+class Recipe(recipe.Recipe):
+ name = 'cloog'
+ version = '0.18.0'
+ licenses = [License.GPLv2]
+ stype = SourceType.TARBALL
+ url = 'ftp://gcc.gnu.org/pub/gcc/infrastructure/cloog-0.18.0.tar.gz'
+ configure_options = '--with-bits=gmp ' \
+ '--disable-shared ' \
+ '--enable-static'
+ deps = ['gmp']