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.
This commit is contained in:
David Höppner 2010-11-23 17:06:27 +01:00
parent 19c50375c5
commit 953ab5d499

14
Formula/le.rb Normal file
View file

@ -0,0 +1,14 @@
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