homebrew-core/Formula/corkscrew.rb

15 lines
422 B
Ruby

require 'formula'
class Corkscrew < Formula
homepage 'http://www.agroman.net/corkscrew/'
url 'http://www.agroman.net/corkscrew/corkscrew-2.0.tar.gz'
sha1 '8bdb4c0dc71048136c721c33229b9bf795230b32'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--host=apple"
system "make install"
end
end