blob: ca9b812fc7cf93a5aae87f60c2d8e14ad5c9c306 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Mosh < Formula
url 'http://mosh-scheme.googlecode.com/files/mosh-0.2.7.tar.gz'
homepage 'http://mosh.monaos.org'
md5 '268598897536ff352296a905879940ad'
depends_on 'gmp'
depends_on 'oniguruma'
fails_with_llvm "Inline asm errors"
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end
|