Most formula

MOST is a powerful paging program for Unix, VMS, MSDOS, and win32 systems.
Unlike other well-known paging programs most supports multiple windows and
can scroll left and right. Why settle for less?
master
Clinton R. Nixon 2009-09-05 18:15:04 -04:00 committed by Max Howell
parent ff4dc81aff
commit 00e54dbf66
1 changed files with 12 additions and 0 deletions

12
Formula/most.rb Normal file
View File

@ -0,0 +1,12 @@
require 'brewkit'
class Most <Formula
@url='ftp://space.mit.edu/pub/davis/most/most-5.0.0.tar.gz'
@homepage='http://www.jedsoft.org/most/'
@md5='8352a6c5b31363f3e60e02a523d6784a'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end