aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/orpie.rb
blob: cb5abdd7dd3f170d1ed92e1066469b4e086d83e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "formula"

class Orpie < Formula
  homepage "http://pessimization.com/software/orpie/"
  url "http://pessimization.com/software/orpie/orpie-1.5.2.tar.gz"
  sha1 "9786df20fb272fd36f87868bed04cab504602282"

  depends_on "gsl"
  depends_on "objective-caml"

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