blob: d6262b9505e2f3d246a26ad6ae9e2df70679e355 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
require 'formula'
class Corkscrew < Formula
  homepage 'http://www.agroman.net/corkscrew/'
  url 'http://www.agroman.net/corkscrew/corkscrew-2.0.tar.gz'
  sha1 '8bdb4c0dc71048136c721c33229b9bf795230b32'
  depends_on "libtool" => :build
  def install
    cp Dir["#{Formula["libtool"].opt_share}/libtool/*/config.{guess,sub}"], buildpath
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make", "install"
  end
end
  |