blob: dd46c8dfefadef03ab8dedb136fe02fda73683bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|