]> git.pld-linux.org Git - packages/ctl.git/blame - ctl.spec
- updated URLs
[packages/ctl.git] / ctl.spec
CommitLineData
2e2307db
JB
1Summary: Color Transform Language libraries
2Summary(pl.UTF-8): Biblioteki CTL (języka przekształceń kolorów)
3Name: ctl
4Version: 1.4.1
42dd3467 5Release: 2
2e2307db
JB
6License: BSD + IP clause
7Group: Libraries
42dd3467 8Source0: http://downloads.sourceforge.net/ampasctl/%{name}-%{version}.tar.gz
2e2307db 9# Source0-md5: 11e215aea6c6380833ade3b576660638
42dd3467
JB
10Patch0: %{name}-include.patch
11URL: http://www.oscars.org/science-technology/council/projects/ctl.html
2e2307db
JB
12BuildRequires: ilmbase-devel >= 1.0.1
13BuildRequires: libstdc++-devel
14BuildRequires: pkgconfig
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18CTL (Color Transform Language) interpreter contains the following C++
19libraries:
20
21IlmCtl - CTL interpreter frontend and the interpreter's public
22programming interface.
23
24IlmCtlSimd - interpreter's SIMD backend.
25
26IlmCtlMath - math routines used by IlmCtlSimd: conversions between
27standard color spaces, 1D and 3D lookup tables, 3D scattered data
28interpolation.
29
30%description -l pl.UTF-8
31Interpreter CTL (Color Transform Language - języka przekształceń
32kolorów) składa się z następujących bibliotek C++:
33
34IlmCtl - frontend interpretera CTL i jego publiczny interfejs
35programistyczny.
36
37IlmCtlSimd - backend SIMD interpretera.
38
39IlmCtlMath - funkcje matematyczne wykorzystywane przez IlmCtlSimd:
40przekształcenia między standardowymi przestrzeniami kolorów, tablice
41wyszukiwań 1D i 3D, interpolacja zgromadzonych danych 3D.
42
43%package devel
44Summary: Header files for CTL library
45Summary(pl.UTF-8): Pliki nagłówkowe biblioteki CTL
46Group: Development/Libraries
47Requires: %{name} = %{version}-%{release}
48Requires: ilmbase-devel >= 1.0.1
49Requires: libstdc++-devel
50
51%description devel
52Header files for CTL library.
53
54%description devel -l pl.UTF-8
55Pliki nagłówkowe biblioteki CTL.
56
57%package static
58Summary: Static CTL library
59Summary(pl.UTF-8): Statyczna biblioteka CTL
60Group: Development/Libraries
61Requires: %{name}-devel = %{version}-%{release}
62
63%description static
64Static CTL library.
65
66%description static -l pl.UTF-8
67Statyczna biblioteka CTL.
68
69%prep
70%setup -q
42dd3467 71%patch0 -p1
2e2307db
JB
72
73%build
74%configure
75%{__make}
76
77%install
78rm -rf $RPM_BUILD_ROOT
79
80%{__make} install \
81 DESTDIR=$RPM_BUILD_ROOT
82
83%clean
84rm -rf $RPM_BUILD_ROOT
85
86%post -p /sbin/ldconfig
87%postun -p /sbin/ldconfig
88
89%files
90%defattr(644,root,root,755)
91%doc AUTHORS COPYING ChangeLog NEWS README
92%attr(755,root,root) %{_libdir}/libIlmCtl.so.*.*.*
93%attr(755,root,root) %ghost %{_libdir}/libIlmCtl.so.2
94%attr(755,root,root) %{_libdir}/libIlmCtlMath.so.*.*.*
95%attr(755,root,root) %ghost %{_libdir}/libIlmCtlMath.so.2
96%attr(755,root,root) %{_libdir}/libIlmCtlSimd.so.*.*.*
97%attr(755,root,root) %ghost %{_libdir}/libIlmCtlSimd.so.2
98
99%files devel
100%defattr(644,root,root,755)
101%doc doc/CtlManual.pdf
102%attr(755,root,root) %{_libdir}/libIlmCtl.so
103%attr(755,root,root) %{_libdir}/libIlmCtlMath.so
104%attr(755,root,root) %{_libdir}/libIlmCtlSimd.so
105%{_libdir}/libIlmCtl.la
106%{_libdir}/libIlmCtlMath.la
107%{_libdir}/libIlmCtlSimd.la
108%{_includedir}/CTL
109%{_pkgconfigdir}/CTL.pc
110
111%files static
112%defattr(644,root,root,755)
113%{_libdir}/libIlmCtl.a
114%{_libdir}/libIlmCtlMath.a
115%{_libdir}/libIlmCtlSimd.a
This page took 0.25804 seconds and 4 git commands to generate.