aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/orpie.rb
blob: 00ea913788d40b427369b0888042fa0204af0208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Orpie < Formula
  homepage "http://pessimization.com/software/orpie/"
  url "http://pessimization.com/software/orpie/orpie-1.5.2.tar.gz"
  sha1 "9786df20fb272fd36f87868bed04cab504602282"

  bottle do
    sha1 "a6213155ff44a5816391c80a1919ac2d992b739f" => :yosemite
    sha1 "86b170484abd8f7ebb07fac0dd82ef7d060b75ed" => :mavericks
    sha1 "d8849eadb8d77de5132658a19fac1a7b7ce7936b" => :mountain_lion
  end

  depends_on "gsl"
  depends_on "objective-caml"
  depends_on "camlp4" => :build

  def install
    ENV.deparallelize
    system "./configure", "--prefix=#{prefix}"
    system "make"
    system "make", "install"
  end
end