blob: 4181c30596da88c503eee404639316cb8fcd7eda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'formula'
class Libxdiff < Formula
homepage 'http://www.xmailserver.org/xdiff-lib.html'
url 'http://www.xmailserver.org/libxdiff-0.23.tar.gz'
sha1 'f92eff48eeb49d5145ddafcb72dcfb18f5d07303'
bottle do
cellar :any
revision 1
sha1 "ced65da17256956abfaca7e8ae0b993959e992b7" => :yosemite
sha1 "ce2f24d9b189f996b8a60c61f72dd540120ff9f0" => :mavericks
sha1 "d657af562a1d224182093b29620da4e37db32a83" => :mountain_lion
end
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|