blob: 8ae0d1dcf141b87aaed9edf51165d78e43f75af6 (
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
|