aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/xdelta.rb
blob: f02e642e1a53d3d7229c9927cf84a79cecc155d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Xdelta < Formula
  url 'http://xdelta.googlecode.com/files/xdelta3.0.0.tar.gz'
  homepage 'http://xdelta.org'
  sha1 'c9e54fd8dbd9f2e77ead17be9d00e0b8af109024'

  def install
    system "make"
    bin.install "xdelta3"
    man1.install "xdelta3.1"
  end
end