diff options
| author | okuoku | 2010-11-01 22:08:43 +0900 |
|---|---|---|
| committer | Adam Vandenberg | 2010-11-06 08:23:29 -0700 |
| commit | b4a8f966dff6155931398b30e9c54edc3e41d1dd (patch) | |
| tree | 1aaec6a2e49eeabc9799ec30c4443306f93b8421 /Library/Formula | |
| parent | 9a35bb172ee2a1e075ad5ed933db4bc49883cd59 (diff) | |
| download | homebrew-b4a8f966dff6155931398b30e9c54edc3e41d1dd.tar.bz2 | |
New Formula: mosh
mosh R6RS Scheme interpreter.
Known to fail with LLVM, GCC>4.0 required.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mosh.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/mosh.rb b/Library/Formula/mosh.rb new file mode 100644 index 000000000..5e6ba7a14 --- /dev/null +++ b/Library/Formula/mosh.rb @@ -0,0 +1,21 @@ +require 'formula' + +class Mosh <Formula + url 'http://mosh-scheme.googlecode.com/files/mosh-0.2.6p.tar.gz' + homepage 'http://mosh.monaos.org' + md5 'e41e38a4a09614392c6e2eb850143724' + version '0.2.6' + + depends_on 'gmp' + depends_on 'oniguruma' + + def install + fails_with_llvm + ENV.gcc_4_2 # GCC > 4.0 required + + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make" + system "make install" + end +end |
