aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDavid Höppner2010-11-23 17:06:27 +0100
committerDavid Höppner2010-11-23 17:06:27 +0100
commit7614d127b6987ecf69d546a0d5c496c22af1a23e (patch)
tree9ef7cac6d57b747f2b88e8e0a1252689ae62c995 /Library
parenta3a9520961b631aefdadb4e0f9659f3341fe602b (diff)
downloadhomebrew-7614d127b6987ecf69d546a0d5c496c22af1a23e.tar.bz2
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.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/le.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/le.rb b/Library/Formula/le.rb
new file mode 100644
index 000000000..b2290a89d
--- /dev/null
+++ b/Library/Formula/le.rb
@@ -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