diff --git a/rules/cloog/host.bash b/rules/cloog/host.bash new file mode 100644 index 0000000..6aaf4da --- /dev/null +++ b/rules/cloog/host.bash @@ -0,0 +1,37 @@ +version=\ +( + '0.18.1' +) + +url=\ +( + "ftp://gcc.gnu.org/pub/gcc/infrastructure/cloog-$version.tar.gz" +) + +md5=\ +( + 'e34fca0540d840e5d0f6427e98c92252' +) + +maintainer=\ +( + 'Ricardo Martins ' +) + +configure() +{ + "../cloog-$version/configure" \ + --prefix="$cfg_dir_toolchain" \ + --disable-shared \ + --enable-static +} + +build() +{ + $cmd_make +} + +host_install() +{ + $cmd_make install-strip +}