blob: c2749661326f2b954f9ab20d3ca47ffd914a7f7a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | require 'formula'
class Ee < Formula
  url 'http://www.users.qwest.net/~hmahon/sources/ee-1.4.6.src.tgz'
  homepage 'http://www.users.qwest.net/~hmahon/'
  md5 '447c48341fc355dacc7e5d338dd1677a'
  def install
    system "make localmake"
    system "make all"
    # Install manually
    bin.install "ee"
    man1.install "ee.1"
  end
end
 |