]> git.pld-linux.org Git - packages/gforth.git/blob - gforth.spec
drobiazgi
[packages/gforth.git] / gforth.spec
1 Summary:     GNU Forth Language
2 Summary(pl): Kompilator GNU Forth 
3 Name:        gforth
4 Version:     0.4.0
5 Release:     1
6 Copyright:   GPL
7 Group:       Languages
8 Source:      ftp://prep.ai.mit.edu/pub/gnu/%{name}-%{version}.tar.gz 
9 Patch0:      gforth-makefile.patch
10 BuildRoot:      /tmp/%{name}-%{version}-root
11
12 %description
13 Gforth is a fast and portable implementation of the ANS Forth
14 language. It works nicely with the Emacs editor, offers some nice
15 features such as input completion and history and a powerful locals
16 facility, and it even has (the beginnings of) a manual. Gforth employs
17 traditional implementation techniques: its inner innerpreter is
18 indirect or direct threaded.  Gforth is distributed under the GNU
19 General Public license (see COPYING).
20
21 %description -l pl
22 Gforth jest szybk± i przenoszaln± implementacj± jêzyka ANS Forth.
23 Dobrae wspólpracuje z edytorem Emacs oferuj±c takie cechy jak kompletowanie
24 i historiê wprowadzania ci±gów znaków.
25
26 %prep
27 %setup -q
28 %patch0 -p1
29
30 %build
31 %configure
32
33 make
34
35 %install
36 rm -rf $RPM_BUILD_ROOT
37 make prefix=$RPM_BUILD_ROOT/usr install
38 strip $RPM_BUILD_ROOT%{_bindir}/*
39
40 gzip -9nf $RPM_BUILD_ROOT%{_infodir}/gforth.info*
41
42 %post
43 /sbin/install-info %{_infodir}/gforth.info.gz /usr/info/dir \
44 --section "Programming:" --entry \
45 "* Gforth: (gforth.info).                       The GNU ANS Forth."
46
47 %preun
48 /sbin/install-info --delete %{_infodir}/gforth.info.gz /usr/info/dir \
49 --section "Programming:" --entry \
50 "* Gforth: (gforth.info).                       The GNU ANS Forth."
51
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %attr(644,root,root,755)
58 %doc README TAGS BUGS ToDo
59 %attr(755,root,root) %{_bindir}/*
60 %{_libdir}/gforth
61 %{_infodir}/*info*
62 %{_mandir}/man1/*
63 %{_datadir}/gforth
64
65 %changelog
66 * Sun Nov 22 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
67   [0.3.0-2]
68 - added using $RPM_OPT_FLAGS during compile,
69 - added %post, %preun with {un}registering info pages,
70 - removed making htm and ps documentation (it can be generatred from
71   info pages by onyone in anytime).
72
73 * Wed Sep 23 1998 Wojciech "Sas" Ciêciwa <cieciwa@zarz.agh.edu.pl>
74   [0.3.0-1]
75 - Building RPM.
This page took 0.070872 seconds and 4 git commands to generate.