blob: fb6b0aa91fcbe2847cf694e1fc88f27f61125930 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Aoeui <Formula
url 'http://aoeui.googlecode.com/files/aoeui-1.5.tgz'
sha1 'f0368cf55ab75cc359d8b6f55928bbeac3aecaa0'
head 'http://aoeui.googlecode.com/svn/trunk/'
homepage 'http://aoeui.googlecode.com/'
def install
system "make", "INST_DIR=#{prefix}", "install"
end
end
|