2010-11-23 16:06:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Le < Formula
|
2012-09-03 20:58:23 +00:00
|
|
|
homepage 'http://freecode.com/projects/leeditor'
|
2013-09-28 04:26:52 +00:00
|
|
|
# url 'http://ftp.yar.ru/pub/source/le/le-1.14.9.tar.xz'
|
|
|
|
# upstream not responding, source from debian
|
|
|
|
url 'http://ftp.de.debian.org/debian/pool/main/l/le/le_1.14.9.orig.tar.gz'
|
|
|
|
sha1 'ce85cbefb30cf1f5a7e8349dbb24ffa0f65b1fd7'
|
2010-11-23 16:06:27 +00:00
|
|
|
|
2013-11-06 15:33:57 +00:00
|
|
|
conflicts_with 'logentries', :because => 'both install a le binary'
|
|
|
|
|
2010-11-23 16:06:27 +00:00
|
|
|
def install
|
|
|
|
ENV.j1
|
2012-09-03 20:58:23 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2010-11-23 16:06:27 +00:00
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|