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