homebrew-core/Formula/orpie.rb
awang 74c6d290de rename objective-caml to ocaml
Follow-up to  https://github.com/Homebrew/homebrew/pull/42851 (rename
objective-caml formula to ocaml).
Renames formulas using/depending on ocaml in the main homebrew library

Closes Homebrew/homebrew#43523.

Signed-off-by: Xu Cheng <xucheng@me.com>
2015-09-04 14:16:47 +08:00

23 lines
694 B
Ruby

class Orpie < Formula
desc "RPN calculator for the terminal"
homepage "http://pessimization.com/software/orpie/"
url "http://pessimization.com/software/orpie/orpie-1.5.2.tar.gz"
sha256 "de557fc7f608c6cb1f44a965d3ae07fc6baf2b02a0d7994b89d6a0e0d87d3d6d"
bottle do
sha1 "a6213155ff44a5816391c80a1919ac2d992b739f" => :yosemite
sha1 "86b170484abd8f7ebb07fac0dd82ef7d060b75ed" => :mavericks
sha1 "d8849eadb8d77de5132658a19fac1a7b7ce7936b" => :mountain_lion
end
depends_on "gsl"
depends_on "ocaml"
depends_on "camlp4" => :build
def install
ENV.deparallelize
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
end