]> git.pld-linux.org Git - packages/esh.git/blob - esh.spec
- removed all Group fields translations (oure rpm now can handle translating
[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 gzip -nf9 emacs/* examples/* CHANGELOG CREDITS GC_README INSTALL LICENSE READLNE-HACKS TODO
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 *.gz doc/*.html emacs/*.gz examples/*.gz
58 %attr(755,root,root) %{_bindir}/esh
59 %{_infodir}/esh.info.gz
This page took 0.06244 seconds and 4 git commands to generate.