blob: 627e64d7f097125c816fcb48820737924f1f999d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Aoeui < Formula
  homepage 'http://aoeui.googlecode.com/'
  url 'http://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
  |