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