74c6d290de
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>
23 lines
694 B
Ruby
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
|