]> git.pld-linux.org Git - packages/antlr.git/blob - antlr.spec
- Making antlr run-script usable
[packages/antlr.git] / antlr.spec
1 Summary:        ANother Tool for Language Recognition
2 Summary(pl):    TODO
3 Name:           antlr
4 Version:        2.7.2
5 Release:        2
6 License:        Public Domain
7 Group:          Development/Tools
8 Source0:        http://www.antlr.org/download/%{name}-%{version}.tar.gz
9 # Source0-md5:  d67ffcaba6b2cedd99601b9052f63957
10 Patch0:         %{name}-scripts.patch
11 URL:            http://www.antlr.org/
12 BuildRequires:  jar
13 Conflicts:      pccts
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a language
18 tool that provides a framework for constructing recognizers, compilers, and
19 translators from grammatical descriptions containing Java, C#, or C++ actions.
20 ANTLR is popular because it is easy to understand, powerful, flexible,
21 generates human-readable output, and comes with complete source. ANTLR provides
22 excellent support for tree construction, tree walking, and translation. 
23
24 %description -l pl
25 TODO.
26
27 %prep
28 %setup -q
29 %patch0 -p1
30
31 %build
32
33 %configure
34
35 %{__make}
36
37 %install
38 rm -rf $RPM_BUILD_ROOT
39
40 %{__make} install \
41         DESTDIR=$RPM_BUILD_ROOT
42
43 %clean
44 rm -rf $RPM_BUILD_ROOT
45
46 %files
47 %defattr(644,root,root,755)
48 %doc RIGHTS
49 %attr(755,root,root) %{_bindir}/antlr
50 %attr(755,root,root) %{_bindir}/antlr-config
51 %{_includedir}/%{name}
52 %{_libdir}/libantlr.a
53 %{_datadir}/%{name}-%{version}
This page took 0.071166 seconds and 4 git commands to generate.