]> git.pld-linux.org Git - packages/esh.git/blob - esh.spec
829c7a4ee08850280f6ba8ce4328f3076f1e2fdc
[packages/esh.git] / esh.spec
1 Summary:        esh, the easy shell
2 Name:           esh
3 Version:        0.8
4 Release:        1
5 License:        GPL
6 Group:          Shells
7 Group(pl):      Pow³oki
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 %prep
24 %setup -q -n esh
25
26 %build
27 %{__make}
28
29 %install
30 rm -rf $RPM_BUILD_ROOT
31
32 install -d $RPM_BUILD_ROOT{%{_bindir},%{_infodir}}
33
34 install esh $RPM_BUILD_ROOT%{_bindir}
35 install esh.info $RPM_BUILD_ROOT%{_infodir}
36
37 %post
38 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
39
40 %postun
41 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
42
43 %clean
44 rm -rf $RPM_BUILD_ROOT
45
46 %files
47 %defattr(644,root,root,755)
48 %doc doc emacs examples CHANGELOG CREDITS GC_README INSTALL LICENSE READLNE-HACKS TODO
49 %attr(755,root,root) %{_bindir}/esh
50 %{_infodir}/esh.info.gz
This page took 0.089337 seconds and 2 git commands to generate.