1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
%define version 1.14.3
%define release 1
Summary: Terminal text editor LE.
Name: le
Version: %{version}
Release: %{release}
License: GNU GPL
Group: Applications/Editors
Source: ftp://ftp.yar.ru/pub/source/le/le-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-buildroot
%description
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,
tunable syntax highlighting, tunable color scheme, tunable key map and some
more useful features. It is slightly similar to Norton Editor from DOS.
%prep
%setup
%build
%define __libtoolize :
%configure
make
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
%clean
rm -rf %{buildroot}
%files
%defattr(0644 root root 0755)
%doc FEATURES HISTORY NEWS README doc/README.keymap.ru
%attr(0755 root root) %{_bindir}/le
%attr(0644 root man) %{_mandir}/man*/*
%{_datadir}/le
|