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