aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/corkscrew.rb
diff options
context:
space:
mode:
authorAlkesh Vaghmaria2009-11-19 07:43:11 +0000
committerMax Howell2009-12-05 17:40:09 +0000
commit334ec271f6ba8a70aba84e0edab31f84efebc9bd (patch)
tree0475de149345fd41229f926af393b842daf01f07 /Library/Formula/corkscrew.rb
parent75260f5e785c951ec1af60febc919a8ee0fdc033 (diff)
downloadhomebrew-334ec271f6ba8a70aba84e0edab31f84efebc9bd.tar.bz2
corkscrew
Diffstat (limited to 'Library/Formula/corkscrew.rb')
-rw-r--r--Library/Formula/corkscrew.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/corkscrew.rb b/Library/Formula/corkscrew.rb
new file mode 100644
index 000000000..f70860c5a
--- /dev/null
+++ b/Library/Formula/corkscrew.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Corkscrew <Formula
+ url 'http://www.agroman.net/corkscrew/corkscrew-2.0.tar.gz'
+ homepage 'http://www.agroman.net/corkscrew/'
+ md5 '35df77e7f0e59c0ec4f80313be52c10a'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--host=apple"
+ system "make install"
+ end
+end