blob: f8f8ebc86fdf377b1ebfedf8ce655739d123d7b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Xdelta < Formula
homepage 'http://xdelta.org'
url 'http://xdelta.googlecode.com/files/xdelta3.0.0.tar.gz'
sha1 'c9e54fd8dbd9f2e77ead17be9d00e0b8af109024'
fails_with :clang do
build 318
cause "Undefined symbols for architecture x86_64: \"_xd3_source_eof\""
end
def install
system "make"
bin.install "xdelta3"
man1.install "xdelta3.1"
end
end
|