aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/flusspferd.rb
blob: f5c9fc7bbc8a44df9cf69f74c84acdcf2ccd9f72 (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.org/'
  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