aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/corkscrew.rb
blob: 04cd7c2e8aadd9a98e1b769a771e6066b8006241 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Corkscrew < Formula
  url 'http://www.agroman.net/corkscrew/corkscrew-2.0.tar.gz'
  homepage 'http://www.agroman.net/corkscrew/'
  sha1 '8bdb4c0dc71048136c721c33229b9bf795230b32'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--host=apple"
    system "make install"
  end
end