aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/corkscrew.rb
blob: f6030259ca17b64ada51c0137d7d8f389659afb6 (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/'
  md5 '35df77e7f0e59c0ec4f80313be52c10a'

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