diff options
| author | Jack Nagel | 2014-06-01 16:36:31 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-06-01 16:37:29 -0500 |
| commit | b83f125c5d470a99a8265c9f4f28f663d060627d (patch) | |
| tree | 5fed90897b17a9e5619e80600e8ae4109198cf98 /Library/Formula | |
| parent | 725f4efc509b996d5bd2f9c7f3ee6d8a37899ecf (diff) | |
| download | homebrew-b83f125c5d470a99a8265c9f4f28f663d060627d.tar.bz2 | |
orpie: remove unnecessary configure switch
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/orpie.rb | 11 |
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 |
