blob: a08dacf2a3d552c5e22bee5fda20ebfc0f4d82be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Mosh < Formula
homepage 'http://mosh.monaos.org'
url 'http://mosh-scheme.googlecode.com/files/mosh-0.2.7.tar.gz'
md5 '268598897536ff352296a905879940ad'
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
|