diff options
| author | Baptiste Fontaine | 2015-01-13 15:38:00 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2015-01-13 15:05:56 +0000 |
| commit | 6e9977551029d0fe9342c83d7a9842b67d8a0a29 (patch) | |
| tree | 56e8164bcf23116fbe3b23273f8ee5a5ed644baa /Library | |
| parent | fd4e3ee228f2666c3853c3a110935eb0e7101e41 (diff) | |
| download | homebrew-6e9977551029d0fe9342c83d7a9842b67d8a0a29.tar.bz2 | |
orpie: missing camlp4 dependency added
Camlp4 is not included in OCaml since 4.02
Closes #35823.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/orpie.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Formula/orpie.rb b/Library/Formula/orpie.rb index cb5abdd7d..5774c9e7a 100644 --- a/Library/Formula/orpie.rb +++ b/Library/Formula/orpie.rb @@ -1,5 +1,3 @@ -require "formula" - class Orpie < Formula homepage "http://pessimization.com/software/orpie/" url "http://pessimization.com/software/orpie/orpie-1.5.2.tar.gz" @@ -7,11 +5,12 @@ class Orpie < Formula depends_on "gsl" depends_on "objective-caml" + depends_on "camlp4" => :build def install ENV.deparallelize system "./configure", "--prefix=#{prefix}" system "make" - system "make install" + system "make", "install" end end |
