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

class Xdelta < Formula
  homepage 'http://xdelta.org'
  url 'https://xdelta.googlecode.com/files/xdelta3-3.0.6.tar.gz'
  sha1 'a468ce0efb0cd1c7dbdff637731e9ac6470437c6'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end