blob: 00200a143d6a0cfcd4dca8916cf57dc6fdb5e392 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Quilt < Formula
homepage 'http://savannah.nongnu.org/projects/quilt'
url 'http://download.savannah.gnu.org/releases/quilt/quilt-0.60.tar.gz'
sha1 'c93c79598c55ba288f60babcc74a9fc9b04404b6'
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
|