aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/corkscrew.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-26 18:22:19 -0800
committerAdam Vandenberg2013-01-26 19:21:58 -0800
commit8dcd03d0e50e81566c7b6e96673086782228d41e (patch)
treeb7aabdbcd0fdbf6bd0d97aa2096661b4ea558368 /Library/Formula/corkscrew.rb
parent58c0e1e2bb7bce1f176a1845a8dce19392dd000b (diff)
downloadhomebrew-8dcd03d0e50e81566c7b6e96673086782228d41e.tar.bz2
corkscrew: style nits
Diffstat (limited to 'Library/Formula/corkscrew.rb')
-rw-r--r--Library/Formula/corkscrew.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/corkscrew.rb b/Library/Formula/corkscrew.rb
index 04cd7c2e8..dd46c8dfe 100644
--- a/Library/Formula/corkscrew.rb
+++ b/Library/Formula/corkscrew.rb
@@ -1,12 +1,14 @@
require 'formula'
class Corkscrew < Formula
- url 'http://www.agroman.net/corkscrew/corkscrew-2.0.tar.gz'
homepage 'http://www.agroman.net/corkscrew/'
+ url 'http://www.agroman.net/corkscrew/corkscrew-2.0.tar.gz'
sha1 '8bdb4c0dc71048136c721c33229b9bf795230b32'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--host=apple"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--host=apple"
system "make install"
end
end