]> git.pld-linux.org Git - packages/esh.git/blob - esh.spec
- release 2
[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 Group(de):      Applikationen/Shells
9 Group(pl):      Aplikacje/Pow³oki
10 Vendor:         Ivan Tkatchev <ivantk@yahoo.com>
11 Source0:        http://esh.netpedia.net/%{name}-%{version}.tar.gz
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 gzip -nf9 emacs/* examples/* CHANGELOG CREDITS GC_README INSTALL LICENSE READLNE-HACKS TODO
47
48 %post
49 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
50
51 %postun
52 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
53
54 %clean
55 rm -rf $RPM_BUILD_ROOT
56
57 %files
58 %defattr(644,root,root,755)
59 %doc *.gz doc/*.html emacs/*.gz examples/*.gz
60 %attr(755,root,root) %{_bindir}/esh
61 %{_infodir}/esh.info.gz
This page took 0.060686 seconds and 4 git commands to generate.