]> git.pld-linux.org Git - packages/treecc.git/blob - treecc.spec
3e6eb0c2429232a5067b305b8fa017c1323d8ec4
[packages/treecc.git] / treecc.spec
1 Summary:        Tree compiler-compiler
2 Summary(pl.UTF-8):      Kompilator kompilacji drzew
3 Summary(pt_BR.UTF-8):   Tree Compilador de compiladores
4 Name:           treecc
5 Version:        0.3.8
6 Release:        2
7 License:        GPL
8 Group:          Development/Languages
9 Source0:        http://www.southern-storm.com.au/download/%{name}-%{version}.tar.gz
10 # Source0-md5:  ca26c97d00cff28fa312155b2228ff97
11 URL:            http://www.southern-storm.com.au/treecc.html
12 BuildRequires:  autoconf
13 BuildRequires:  automake >= 1.6
14 BuildRequires:  bison
15 BuildRequires:  flex
16 BuildRequires:  texinfo
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 The treecc program is designed to assist in the development of
21 compilers and other language-based tools. It manages the generation of
22 code to handle abstract syntax trees and operations upon the trees.
23
24 %description -l pl.UTF-8
25 Program treecc jest przeznaczony do pomocy w tworzeniu kompilatorów i
26 innych bazujących na językach narzędzi. Zarządza generowaniem kodu do
27 obsługi abstrakcyjnej składni drzew i operacji na drzewach.
28
29 %description -l pt_BR.UTF-8
30 O programa treecc é destinado a auxiliar no desenvolviemnto de
31 compiladores e outras ferramentas baseadas em linguagens. Ele controla
32 a geração de código para manipulação de árvores de sintaxe abstrata e
33 operações através de árvores
34
35 %prep
36 %setup -q
37
38 %build
39 rm -f missing
40 %{__aclocal}
41 %{__autoconf}
42 %{__automake}
43 %configure
44 %{__make}
45 %{__make} check
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49
50 %{__make} install \
51         DESTDIR=$RPM_BUILD_ROOT
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %post   -p      /sbin/postshell
57 -/usr/sbin/fix-info-dir -c %{_infodir}
58
59 %postun -p      /sbin/postshell
60 -/usr/sbin/fix-info-dir -c %{_infodir}
61
62 %files
63 %defattr(644,root,root,755)
64 %doc README NEWS ChangeLog AUTHORS
65 %attr(755,root,root) %{_bindir}/*
66 %{_mandir}/man?/*
67 %{_infodir}/treecc*
This page took 0.042475 seconds and 2 git commands to generate.