]> git.pld-linux.org Git - packages/alex.git/blob - alex.spec
- apply debian.patch
[packages/alex.git] / alex.spec
1 Summary:        A lexical analyser generator for Haskell
2 Summary(pl):    Generator analizatorów sk³adniowych dla Haskella
3 Name:           alex
4 Version:        2.0
5 Release:        1
6 License:        BSD-like w/o adv. clause
7 Group:          Development/Tools
8 Source0:        http://www.haskell.org/alex/dist/%{name}-%{version}-src.tar.bz2
9 # Source0-md5:  14ff6abf21d81763b15afe151add9091
10 Patch0:         %{name}-DESTDIR.patch
11 Patch1:         %{name}-debian.patch
12 URL:            http://www.haskell.org/alex/
13 BuildRequires:  ghc >= 5.04
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 Alex is a tool for generating lexical analysers in Haskell, given a
18 description of the tokens to be recognised in the form of regular
19 expressions. It is similar to the tool lex or flex for C/C++.
20
21 %description -l pl
22 Alex to narzêdzie do generowania analizatorów sk³adniowych w Haskellu
23 na podstawie opisu tokenów do rozpoznawania w postaci wyra¿eñ
24 regularnych. Jest podobne do narzêdzi lex lub flex dla C/C++.
25
26 %prep
27 %setup -q
28 %patch0 -p1
29 %patch1 -p1
30
31 %build
32 %configure
33 %{__make}
34 %{__make} ps -C alex/doc
35
36 %install
37 rm -rf $RPM_BUILD_ROOT
38 install -d $RPM_BUILD_ROOT{%{_bindir},%{_examplesdir}/%{name}-%{version}}
39
40 %{__make} install \
41         DESTDIR=$RPM_BUILD_ROOT
42
43 cp -a alex/examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}/
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %files
49 %defattr(644,root,root,755)
50 %doc alex/{ANNOUNCE,LICENSE,README} alex/doc/alex.{ps,dvi}
51 %attr(755,root,root) %{_bindir}/*
52 %dir %{_libdir}/%{name}-%{version}
53 %{_libdir}/%{name}-%{version}/A*
54 %attr(755,root,root) %{_libdir}/%{name}-%{version}/alex.bin
55 %{_examplesdir}/%{name}-%{version}
This page took 0.078132 seconds and 3 git commands to generate.