]> git.pld-linux.org Git - packages/gforth.git/commitdiff
- added using $RPM_OPT_FLAGS during compile,
authorkloczek <kloczek@pld-linux.org>
Sun, 22 Nov 1998 15:34:11 +0000 (15:34 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- added %post, %preun with {un}registering info pages,
- removed making htm and ps documentation (it can be generatred from
  info pages by onyone in anytime).
By Wojciech "Sas" Cięciwa <cieciwa@alpha.zarz.agh.edu.pl>:
- Building RPM.

Changed files:
    gforth.spec -> 1.1

gforth.spec [new file with mode: 0644]

diff --git a/gforth.spec b/gforth.spec
new file mode 100644 (file)
index 0000000..172d382
--- /dev/null
@@ -0,0 +1,75 @@
+Summary:     GNU Forth Language
+Summary(pl): Kompilator GNU Forth 
+Name:        gforth
+Version:     0.3.0
+Release:     2
+Copyright:   GPL
+Group:       Languages
+Source:      ftp://prep.ai.mit.edu/pub/gnu/%{name}-%{version}.tar.gz 
+Patch0:      gforth-makefile.patch
+Buildroot:   /tmp/%{name}-%{version}-root
+
+%description
+Gforth is a fast and portable implementation of the ANS Forth
+language. It works nicely with the Emacs editor, offers some nice
+features such as input completion and history and a powerful locals
+facility, and it even has (the beginnings of) a manual. Gforth employs
+traditional implementation techniques: its inner innerpreter is
+indirect or direct threaded.  Gforth is distributed under the GNU
+General Public license (see COPYING).
+
+%description -l pl
+Gforth jest szybk± i przenoszaln± implementacj± jêzyka ANS Forth.
+Dobrae wspólpracuje z edytorem Emacs oferuj±c takie cechy jak kompletowanie
+i historiê wprowadzania ci±gów znaków.
+
+%prep
+%setup -q
+%patch0 -p1
+
+%build
+./configure \
+       --prefix=/usr
+make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make prefix=$RPM_BUILD_ROOT/usr install
+strip $RPM_BUILD_ROOT/usr/bin/*
+
+gzip -9nf $RPM_BUILD_ROOT/usr/info/gforth.info*
+
+%post
+/sbin/install-info /usr/info/gforth.info.gz /usr/info/dir \
+--section "Programming:" --entry \
+"* Gforth: (gforth.info).                       The GNU ANS Forth."
+
+%preun
+/sbin/install-info --delete /usr/info/gforth.info.gz /usr/info/dir \
+--section "Programming:" --entry \
+"* Gforth: (gforth.info).                       The GNU ANS Forth."
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%attr(644, root, root, 755)
+%doc README TAGS BUGS ToDo
+%attr(755, root, root) /usr/bin/*
+/usr/lib/gforth
+/usr/info/*info*
+%attr(644, root,  man) /usr/man/man1/*
+/usr/share/gforth
+
+%changelog
+* Sun Nov 22 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
+  [0.3.0-2]
+- added using $RPM_OPT_FLAGS during compile,
+- added %post, %preun with {un}registering info pages,
+- removed making htm and ps documentation (it can be generatred from
+  info pages by onyone in anytime).
+
+* Wed Sep 23 1998 Wojciech "Sas" Ciêciwa <cieciwa@zarz.agh.edu.pl>
+  [0.3.0-1]
+- Building RPM.
This page took 0.063571 seconds and 4 git commands to generate.