]> git.pld-linux.org Git - packages/esh.git/blob - esh.spec
- don't force gzipped infos and mans, some other fixes/cosmetics where necessary
[packages/esh.git] / esh.spec
1 Summary:        esh, the easy shell
2 Summary(pl):    esh, prosta pow³oka
3 Name:           esh
4 Version:        0.8
5 Release:        2
6 License:        GPL
7 Group:          Applications/Shells
8 Vendor:         Ivan Tkatchev <ivantk@yahoo.com>
9 Source0:        http://esh.netpedia.net/%{name}-%{version}.tar.gz
10 URL:            http://esh.netpedia.net/
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %define         _bindir         /bin
14
15 %description
16 esh was primarily written out of a need for a simple and lightweight
17 shell for Unix. As such, it deviates completely from all of the
18 traditional shells, opting instead for a Lisp-like syntax. This allows
19 exceptionally small size, both in terms of lines of code and memory
20 consumption, while retaining remarkable flexibility and
21 programmability.
22
23 %description -l pl
24 esh zosta³ napisany w pierwszej kolejno¶ci z potrzeby posiadania
25 prostej i ma³ej pow³oki Unixowej. Jako taki ró¿ni siê od wszystkich
26 innych shelli, przyjmuj±c sk³adniê podobn± do Lisp'a. To pozwala na
27 uzyskaæ wyj±tkowo ma³e rozmiary, w rozmiarach kodu jak i w zu¿yciu
28 pamiêci przy zachowaniu du¿ej elastyczno¶ci i programowalno¶ci.
29
30 %prep
31 %setup -q -n esh
32
33 %build
34 %{__make}
35
36 %install
37 rm -rf $RPM_BUILD_ROOT
38
39 install -d $RPM_BUILD_ROOT{%{_bindir},%{_infodir}}
40
41 install esh $RPM_BUILD_ROOT%{_bindir}
42 install doc/esh.info $RPM_BUILD_ROOT%{_infodir}
43
44 %post
45 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
46
47 %postun
48 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
49
50 %clean
51 rm -rf $RPM_BUILD_ROOT
52
53 %files
54 %defattr(644,root,root,755)
55 %doc CHANGELOG CREDITS GC_README INSTALL LICENSE READLNE-HACKS TODO doc/*.html emacs examples
56 %attr(755,root,root) %{_bindir}/esh
57 %{_infodir}/esh.info*
This page took 0.074995 seconds and 4 git commands to generate.