a0759ae93a
Many formula were imported during the development of the dependency branch.
14 lines
361 B
Ruby
14 lines
361 B
Ruby
require 'brewkit'
|
|
|
|
class Most <Formula
|
|
@url='ftp://space.mit.edu/pub/davis/most/most-5.0.0a.tar.bz2'
|
|
@homepage='http://www.jedsoft.org/most/'
|
|
@md5='4c42abfc8d3ace1b0e0062ea021a5917'
|
|
|
|
depends_on 's-lang'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|