homebrew-core/Formula/corkscrew.rb

13 lines
370 B
Ruby
Raw Normal View History

2009-11-19 07:43:11 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Corkscrew < Formula
2009-11-19 07:43:11 +00:00
url 'http://www.agroman.net/corkscrew/corkscrew-2.0.tar.gz'
homepage 'http://www.agroman.net/corkscrew/'
sha1 '8bdb4c0dc71048136c721c33229b9bf795230b32'
2009-11-19 07:43:11 +00:00
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--host=apple"
system "make install"
end
end