aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-04 20:37:24 -0800
committerAdam Vandenberg2013-01-04 20:37:24 -0800
commit755adbe38a7dbf2147bd5431238e46e1f92210af (patch)
tree21c9ea9044117640cd902251f3fd7e94d81d81d3 /Library/Formula
parentdab65ab3fd6988420d29cb328ffd59cf9d54fb10 (diff)
downloadhomebrew-755adbe38a7dbf2147bd5431238e46e1f92210af.tar.bz2
Remove mosh-scheme.
This software segfaults when run for 64-bit users, and 'mosh' is almost always expected to refer to mobile-shell. Would review an updated version that does not segfault, submitted under the name "mosh-scheme". Closes #13936.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mosh.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/Library/Formula/mosh.rb b/Library/Formula/mosh.rb
deleted file mode 100644
index e11c7b802..000000000
--- a/Library/Formula/mosh.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-require 'formula'
-
-class Mosh < Formula
- homepage 'http://mosh.monaos.org'
- url 'http://mosh-scheme.googlecode.com/files/mosh-0.2.7.tar.gz'
- sha1 '866c08ac12e14733ce27756001a27257624d01ad'
-
- depends_on 'gmp'
- depends_on 'oniguruma'
-
- fails_with :llvm do
- cause "Inline asm errors"
- end
-
- def install
- system "./configure", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
- system "make"
- system "make install"
- end
-end