blob: 3943742f46909bb415638f480c2a61d67b618d6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Dwarf < Formula
url 'http://dwarf-ng.googlecode.com/files/dwarf-0.2.tar.gz'
head 'http://code.autistici.org/svn/dwarf/trunk'
homepage 'http://code.autistici.org/trac/dwarf'
md5 '70dce54fe268af3368b9340e3ad73142'
depends_on 'readline'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|