blob: f70860c5affc6e7feab2c4c451a9079ff13912d2 (
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
|