File: clex.spec.in

package info (click to toggle)
clex 4.6.patch8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 1,228 kB
  • sloc: ansic: 13,018; sh: 1,462; makefile: 28; sed: 5
file content (52 lines) | stat: -rw-r--r-- 1,404 bytes parent folder | download
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
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# CLEX File Manager RPM spec file
#
Summary: A free file manager with a full-screen user interface
Name: clex
Version: @VERSION@
Release: @RPMRELEASE@%{?dist}
License: GPLv2+
Group: Applications/File
Source: http://www.clex.sk/download/clex-@VERSION@.tar.gz
URL: http://www.clex.sk
Requires: ncurses
BuildRequires: ncurses-devel
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
%changelog
# empty

%description
CLEX (pronounced KLEKS) is a file manager with a full-screen user 
interface. It displays directory contents including the file status 
details and provides features like command history, filename insertion, 
or name completion in order to help users to create commands to be 
executed by the shell. 

CLEX is a versatile tool for system administrators and all users that 
utilize the enormous power of the command line. Its unique one-panel 
user interface enhances productivity and lessens the probability of 
mistake. There are no built-in commands, CLEX is an add-on to your 
favorite shell. 

%prep
%setup -q

%build
./configure --bindir=/usr/bin --mandir=/usr/share/man  --sysconfdir=/etc
make

%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}

%files
%defattr(-,root,root,-)
%{_bindir}/clex
%{_bindir}/cfg-clex
%{_bindir}/kbd-test
%{_mandir}/man1/clex.1.gz
%{_mandir}/man1/cfg-clex.1.gz
%{_mandir}/man1/kbd-test.1.gz

%clean
rm -rf %{buildroot}