]> git.pld-linux.org Git - packages/candl.git/blame - candl.spec
- cleanup
[packages/candl.git] / candl.spec
CommitLineData
cb695bf1
JB
1Summary: Candl - Data Dependence Analysis Tool in the Polyhedral Model
2Summary(pl.UTF-8): Candl - narzędzie do analizy zależności danych w modelu wielościennym
3Name: candl
4Version: 0.6.2
5Release: 1
6License: LGPL v3+
7Group: Libraries
8Source0: http://web.cse.ohio-state.edu/~pouchet/software/pocc/download/modules/%{name}-%{version}.tar.gz
9# Source0-md5: 4e86392fa46a514b03532f93d9c83f8d
10Patch0: %{name}-isl.patch
11Patch1: %{name}-info.patch
12URL: http://icps.u-strasbg.fr/people/bastoul/public_html/development/candl/
13BuildRequires: gmp-devel
14# 0.12.x originally, 0.13 with isl patch
15BuildRequires: isl-devel >= 0.13
16BuildRequires: piplib-devel
17BuildRequires: scoplib-devel >= 0.2.1-2
18BuildRequires: texinfo
19BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21%description
22Candl (Chunky ANalyzer for Dependences in Loops) is a free software
23and a library devoted to data dependences computation.
24
25%description -l pl.UTF-8
26Candl (Chunky ANalyzer for Dependences in Loops - blokowy analizator
27zależności w pętlach) to wolnodostępne oprogramowanie i biblioteka
28służące do obliczeń zależności danych.
29
30%package devel
31Summary: Header files for Candl library
32Summary(pl.UTF-8): Pliki nagłówkowe biblioteki Candl
33Group: Development/Libraries
34Requires: %{name} = %{version}-%{release}
35Requires: gmp-devel
36Requires: isl-devel >= 0.13
37Requires: piplib-devel
38Requires: scoplib-devel >= 0.2.1-2
39
40%description devel
41Header files for Candl library.
42
43%description devel -l pl.UTF-8
44Pliki nagłówkowe biblioteki Candl.
45
46%package static
47Summary: Static Candl library
48Summary(pl.UTF-8): Statyczna biblioteka Candl
49Group: Development/Libraries
50Requires: %{name}-devel = %{version}-%{release}
51
52%description static
53Static Candl library.
54
55%description static -l pl.UTF-8
56Statyczna biblioteka Candl.
57
58%prep
59%setup -q
60%patch0 -p1
61%patch1 -p1
62
63%build
64%configure \
65 --enable-mp-version \
66 --disable-silent-rules
67
68%{__make}
69
70%install
71rm -rf $RPM_BUILD_ROOT
72
73%{__make} install \
74 DESTDIR=$RPM_BUILD_ROOT
75
76%clean
77rm -rf $RPM_BUILD_ROOT
78
79%post -p /sbin/ldconfig
80%postun -p /sbin/ldconfig
81
82%post devel -p /sbin/postshell
83-/usr/sbin/fix-info-dir -c %{_infodir}
84
85%postun devel -p /sbin/postshell
86-/usr/sbin/fix-info-dir -c %{_infodir}
87
88%files
89%defattr(644,root,root,755)
90%doc AUTHORS ChangeLog README
91%attr(755,root,root) %{_bindir}/candl
92%attr(755,root,root) %{_libdir}/libcandl.so.*.*.*
93%attr(755,root,root) %ghost %{_libdir}/libcandl.so.0
94
95%files devel
96%defattr(644,root,root,755)
97%attr(755,root,root) %{_libdir}/libcandl.so
98%{_libdir}/libcandl.la
99%{_includedir}/candl
100%{_infodir}/candl.info*
101
102%files static
103%defattr(644,root,root,755)
104%{_libdir}/libcandl.a
This page took 0.091414 seconds and 4 git commands to generate.