aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-06-01 16:36:31 -0500
committerJack Nagel2014-06-01 16:37:29 -0500
commitb83f125c5d470a99a8265c9f4f28f663d060627d (patch)
tree5fed90897b17a9e5619e80600e8ae4109198cf98 /Library/Formula
parent725f4efc509b996d5bd2f9c7f3ee6d8a37899ecf (diff)
downloadhomebrew-b83f125c5d470a99a8265c9f4f28f663d060627d.tar.bz2
orpie: remove unnecessary configure switch
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/orpie.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/orpie.rb b/Library/Formula/orpie.rb
index 7571bad1a..cb5abdd7d 100644
--- a/Library/Formula/orpie.rb
+++ b/Library/Formula/orpie.rb
@@ -1,17 +1,16 @@
-require 'formula'
+require "formula"
class Orpie < Formula
- homepage 'http://pessimization.com/software/orpie/'
+ 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'
+ depends_on "gsl"
+ depends_on "objective-caml"
def install
ENV.deparallelize
- system "./configure", "--prefix=#{prefix}",
- "--mandir=#{man}"
+ system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end