blob: 32b5195a47a6b549c3076b6cb1fa915595e0aad5 (
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.4.tgz'
  head 'http://aoeui.googlecode.com/svn/trunk/'
  homepage 'http://aoeui.googlecode.com/'
  md5 '8df4615fdf854838fe6c8ca773d0a6ea'
  def install
    system "make", "INST_DIR=#{prefix}", "install"
  end
end
  |