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