blob: 2ce114843e1cc2eac872ed486d7f7f7b27877fd4 (
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
|
class Cabextract < Formula
homepage "http://www.cabextract.org.uk/"
url "http://www.cabextract.org.uk/cabextract-1.4.tar.gz"
sha1 "b1d5dd668d2dbe95b47aad6e92c0b7183ced70f1"
bottle do
cellar :any
sha1 "7bb2b3a1ed06161c81d23fd8735477317bad86d7" => :yosemite
sha1 "b81507d68f43f9c32f5614293247eab43a61177c" => :mavericks
sha1 "8c9696a300165c215e741d644502a5ea22a65173" => :mountain_lion
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
# probably the smallest valid .cab file
cab = <<-EOS.gsub(/\s+/, "")
4d5343460000000046000000000000002c000000000000000301010001000000d20400003
e00000001000000000000000000000000003246899d200061000000000000000000
EOS
(testpath/"test.cab").binwrite [cab].pack("H*")
system "#{bin}/cabextract", "test.cab"
assert File.exist? "a"
end
end
|