homebrew-core/Formula/corkscrew.rb

18 lines
524 B
Ruby
Raw Normal View History

2009-11-19 07:43:11 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Corkscrew < Formula
2009-11-19 07:43:11 +00:00
homepage 'http://www.agroman.net/corkscrew/'
2013-01-27 02:22:19 +00:00
url 'http://www.agroman.net/corkscrew/corkscrew-2.0.tar.gz'
sha1 '8bdb4c0dc71048136c721c33229b9bf795230b32'
2009-11-19 07:43:11 +00:00
depends_on "libtool" => :build
2009-11-19 07:43:11 +00:00
def install
cp Dir["#{Formula["libtool"].opt_share}/libtool/config/config.*"], buildpath
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
2009-11-19 07:43:11 +00:00
end
end