2010-06-30 21:51:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Clay < Formula
|
2011-12-02 14:34:02 +00:00
|
|
|
homepage 'http://claylabs.com/clay/'
|
2012-02-22 05:12:27 +00:00
|
|
|
url 'https://github.com/jckarter/clay/tarball/v0.1.0'
|
2012-01-18 03:19:45 +00:00
|
|
|
md5 'fa34b4ecc0ab13047f802b9aac6d850b'
|
2012-02-22 05:12:27 +00:00
|
|
|
|
2012-01-18 03:19:45 +00:00
|
|
|
head 'https://github.com/jckarter/clay.git'
|
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'llvm' => :build
|
2010-06-30 21:51:03 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-22 05:12:27 +00:00
|
|
|
system "cmake #{std_cmake_parameters} ."
|
2012-01-18 03:19:45 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-05-15 18:31:21 +00:00
|
|
|
system "#{bin}/clay", "-e", "println(\"Hello, Clay!\");"
|
2010-06-30 21:51:03 +00:00
|
|
|
end
|
|
|
|
end
|