blob: 252fd7c49bacf0854c58ac69b71b4faca39454c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class ShaperProbe < Formula
url 'http://www.cc.gatech.edu/~partha/diffprobe/shaperprobe.tgz'
homepage 'http://www.cc.gatech.edu/~partha/diffprobe/shaperprobe.html'
md5 'a15b31cce3ffe087c5242d1fc9006c13'
version '2009.10'
def install
system "make -f Makefile.osx"
bin.install "prober"
end
end
|