blob: 4ed5b924ab20c68cfe7e2704438d2602cbc5e365 (
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
|