homebrew-core/Formula/flusspferd.rb

21 lines
440 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Flusspferd < Formula
2011-11-07 16:54:33 +00:00
url 'https://github.com/Flusspferd/flusspferd/tarball/v0.9'
homepage 'http://flusspferd.github.com/'
2011-11-07 16:54:33 +00:00
md5 '8d839b9ab25e1f3fcb9c0e48fb3538b9'
depends_on 'cmake' => :build
depends_on 'arabica'
depends_on 'gmp'
depends_on 'boost'
depends_on 'spidermonkey'
2011-03-21 21:24:22 +00:00
fails_with_llvm
def install
system "cmake -H. -Bbuild #{std_cmake_parameters}"
system "make install"
end
end