aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/flusspferd.rb
blob: 2f72f1a52b975694952a794a71b3b1fe659c31c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Flusspferd < Formula
  url 'http://flusspferd.org/downloads/flusspferd-0.9.tar.bz2'
  homepage 'http://flusspferd.github.com/'
  md5 '7688b2a939777b4b7be82898dea9b3d9'

  depends_on 'cmake' => :build
  depends_on 'arabica'
  depends_on 'gmp'
  depends_on 'boost'
  depends_on 'spidermonkey'

  fails_with_llvm

  def install
    system "cmake -H. -Bbuild #{std_cmake_parameters}"
    system "make install"
  end
end