blob: 917544eac33b64cbfe88dfbf282ca1ed1d12f3d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
require 'formula'
class Most < Formula
  homepage 'http://www.jedsoft.org/most/'
  url 'ftp://space.mit.edu/pub/davis/most/most-5.0.0a.tar.bz2'
  sha1 'de9fe30ae405c32f8424f10571839519a25f3043'
  head 'git://git.jedsoft.org/git/most.git'
  depends_on 's-lang'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--with-slang=#{HOMEBREW_PREFIX}"
    system "make install"
  end
end
  |