blob: b1294a0f133b0df679c119ae33c9606f9b395f66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
class Quilt < Formula
homepage "http://savannah.nongnu.org/projects/quilt"
url "http://download.savannah.gnu.org/releases/quilt/quilt-0.63.tar.gz"
sha1 "19f2ba0384521eb3d8269b8a1097b16b07339be5"
bottle do
revision 1
sha1 "035ec6126a3b82e8ea86cf1804bf1da650f48cd4" => :yosemite
sha1 "369aee1a032fb132b1177aa6b51254e8d1751d5a" => :mavericks
sha1 "5e323ed88f03a34f4d290a2341fc09cc6c63c1c1" => :mountain_lion
end
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
test do
mkdir "patches"
(testpath/"test.txt").write "Hello, World!"
system "#{bin}/quilt", "new", "test.patch"
system "#{bin}/quilt", "add", "test.txt"
rm "test.txt"
(testpath/"test.txt").write "Hi!"
system "#{bin}/quilt", "refresh"
assert_match /-Hello, World!/, File.read("patches/test.patch")
assert_match /\+Hi!/, File.read("patches/test.patch")
end
end
|