diff options
Diffstat (limited to 'Library/Formula/clay.rb')
| -rw-r--r-- | Library/Formula/clay.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/clay.rb b/Library/Formula/clay.rb index 92b035d5a..c61ab97a0 100644 --- a/Library/Formula/clay.rb +++ b/Library/Formula/clay.rb @@ -1,20 +1,21 @@ require 'formula' class Clay < Formula - url 'https://github.com/jckarter/clay/tarball/v0.1.0' homepage 'http://claylabs.com/clay/' + url 'https://github.com/jckarter/clay/tarball/v0.1.0' md5 'fa34b4ecc0ab13047f802b9aac6d850b' + head 'https://github.com/jckarter/clay.git' depends_on 'cmake' => :build depends_on 'llvm' => :build def install - system "cmake . #{std_cmake_parameters}" + system "cmake #{std_cmake_parameters} ." system "make install" end def test - system "clay -e 'println(\"Hello, Clay!\");'" + system "#{bin}/clay -e 'println(\"Hello, Clay!\");'" end end |
