blob: 384464db5816bb5bce2d7b9231535ea365094c06 (
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
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 do
cause "Inline asm errors"
end
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end
|