blob: efeea588e3c84211a73453d30e63590a71608380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Zdelta < Formula
  homepage 'http://cis.poly.edu/zdelta/'
  url 'http://cis.poly.edu/zdelta/downloads/zdelta-2.1.tar.gz'
  md5 'c69583a64f42f69a39e297d0d27d77e5'
  def install
    system "make", "test", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
    system "make", "install", "prefix=#{prefix}"
    bin.install "zdc", "zdu"
  end
end
  |