]> git.pld-linux.org Git - packages/esh.git/commitdiff
- raw version.
authorkloczek <kloczek@pld-linux.org>
Fri, 31 Mar 2000 05:01:54 +0000 (05:01 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    esh.spec -> 1.1

esh.spec [new file with mode: 0644]

diff --git a/esh.spec b/esh.spec
new file mode 100644 (file)
index 0000000..fee978c
--- /dev/null
+++ b/esh.spec
@@ -0,0 +1,69 @@
+%define name esh
+%define version 0.7
+%define release 1
+%define serial 1
+
+Summary: esh, the easy shell.
+Name: %{name}
+Version: %{version}
+Release: %{release}
+Serial: %{serial}
+Copyright: GPL
+Group: Shells
+URL: http://esh.netpedia.net
+Vendor: Ivan Tkatchev <ivantk@yahoo.com>
+Source: %{name}-%{version}.tar.gz
+Distribution: Freshmeat RPMs
+Packager: Ryan Weaver <ryanw@infohwy.com>
+BuildRoot: /tmp/%{name}-%{version}
+
+%description
+esh was primarily written out of a need for a simple and lightweight
+shell for Unix. As such, it deviates completely from all of the traditional
+shells, opting instead for a Lisp-like syntax. This allows exceptionally
+small size, both in terms of lines of code and memory consumption, while
+retaining remarkable flexibility and programmability.
+
+%prep
+%setup -q -n esh
+
+%build
+make
+
+cp doc/esh.info .; gzip -9 esh.info
+
+%install
+if [ -e $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi
+
+install -d $RPM_BUILD_ROOT/bin
+install -d $RPM_BUILD_ROOT/usr/info
+
+install -s -m 755 esh $RPM_BUILD_ROOT/bin
+install    -m 644 esh.info.gz  $RPM_BUILD_ROOT/usr/info
+
+%post
+/sbin/install-info /usr/info/esh.info.gz /usr/info/dir --entry="* esh: (esh).                 esh, the easy shell."
+
+%preun
+if [ $1 = 0 ]; then
+       /sbin/install-info --delete /usr/info/esh.info.gz /usr/info/dir --entry="* esh: (esh).                 esh, the easy shell."
+fi
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+%doc doc emacs examples CHANGELOG CREDITS GC_README INSTALL LICENSE READLNE-HACKS TODO
+/bin/esh
+/usr/info/esh.info.gz
+
+%changelog
+* Wed Feb 23 1999 Ryan Weaver <ryanw@infohwy.com>
+  [esh-0.7-1]
+- Initial RPM Build
+- "run" and "run-simple" now return the exit status of the 
+  pipeline if the job was launched in the foreground.
+- "chop!" and "chop-nl!" now return their arguments.
+- Added "begin-last", which is like the "begin" in Scheme.
+- Added the "<" and ">" commands.
This page took 0.036163 seconds and 4 git commands to generate.