2010-10-29 03:15:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Quilt < Formula
|
2010-10-29 03:15:03 +00:00
|
|
|
homepage 'http://savannah.nongnu.org/projects/quilt'
|
2012-07-29 15:58:10 +00:00
|
|
|
url 'http://download.savannah.gnu.org/releases/quilt/quilt-0.60.tar.gz'
|
|
|
|
sha1 'c93c79598c55ba288f60babcc74a9fc9b04404b6'
|
2010-10-29 03:15:03 +00:00
|
|
|
|
|
|
|
depends_on 'gnu-sed'
|
|
|
|
depends_on 'coreutils'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--with-sed=#{HOMEBREW_PREFIX}/bin/gsed",
|
|
|
|
"--without-getopt"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|