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