homebrew-core/Formula/le.rb
David Höppner 953ab5d499 New formula le
LE has many block operations with stream and rectangular blocks, can
edit both unix and dos style files (LF/CRLF), is binary clean, has hex
mode, can edit files and mmap'pable devices in mmap shared mode (only
replace), has tunable syntax highlighting, tunable color scheme (can use
default colors), tunable key map. It is slightly similar to Norton
Editor, but has more features.
2010-11-23 17:06:27 +01:00

14 lines
380 B
Ruby

require 'formula'
class Le <Formula
url 'http://ftp.yar.ru/pub/source/le/le-1.14.5.tar.bz2'
homepage 'http://directory.fsf.org/project/le-editor/'
md5 '92d9ff5e0e91eba6b93d49d50070143c'
def install
ENV.j1
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end