diff options
| author | Lars Eggert | 2010-02-09 23:33:29 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2010-04-27 15:00:03 -0700 |
| commit | 1c6c7c8a6432a8c4c54676fe8fb3c3ff7a5d7b71 (patch) | |
| tree | bf4f29642efb68d0dfee9b6ed3b5c3da6350e9b9 /Library | |
| parent | 86690653942ea2f6543501042573496b641cf512 (diff) | |
| download | homebrew-1c6c7c8a6432a8c4c54676fe8fb3c3ff7a5d7b71.tar.bz2 | |
ee 1.4.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ee.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/ee.rb b/Library/Formula/ee.rb new file mode 100644 index 000000000..4ed5b924a --- /dev/null +++ b/Library/Formula/ee.rb @@ -0,0 +1,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 |
