]> git.pld-linux.org Git - packages/Producer.git/blame - Producer.spec
- make distfiles happy (hopefully)
[packages/Producer.git] / Producer.spec
CommitLineData
55cf4967 1%define fversion %(echo %{version} | tr r -)
c3d2a9ff 2Summary: Cross-platform libray for Opengl rendering
3Name: Producer
4Version: 0.8.4r2
5Release: 1
6Epoch: 1
7License: LGPL
8Group: Libraries
9Source0: http://www.andesengineering.com/Producer/Download/%{name}-%{fversion}.tar.gz
10URL: http://www.andesengineering.com/Producer/index.html
11Provides: OpenProducer = %{version}
12BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14%description
15Open Producer (or simply Producer) is a cross-platform, C++ library
16for managing OpenGL rendering contexts in a windowing system
17independent manner. Producer provides a simple, yet powerfully
18scalable approach for real-time 3D applications wishing to run within
19a single window to large, multidisplay systems. Producer is highly
20portable and has been tested on Linux, Windows, Mac OSX, Solaris and
21IRIX. Producer works on all Unix based OS's (including Mac OSX)
22through the X11 Windowing system, and through the native win32 on
23Windows. Producer is written with productivity, performance and
24scalability in mind by adhering to industry standard and employing
25advanced software engineering practices. Software developers wishing
26to produce 3D rendering software that can display on a desktop, and
27move to a large system or clustered system of displays by simply
28changing a configuration file, can depend on Open Producer to handle
29all the complexity for them.
30
31%package devel
32Summary: Devel files for Producent
33Summary(pl): Pliki developerskie dla Producer
34Group: Development/Libraries
35
36%description devel
37Devel files for Producent.
38
39%prep
40%setup -q -n %{name}
41find -type d -name CVS |xargs rm -rf
42
43%build
44%{__make} \
45 CXX="%{__cxx} %{rpmcflags} -fPIC -fpermissive"
46
47%install
48rm -rf $RPM_BUILD_ROOT
49%{__make} install \
50 INST_LOCATION=$RPM_BUILD_ROOT%{_prefix}
51
52mv $RPM_BUILD_ROOT%{_prefix}/lib/libProducer.so $RPM_BUILD_ROOT%{_libdir}/libProducer.so.0
53ln -s libProducer.so.0 $RPM_BUILD_ROOT%{_libdir}/libProducer.so
54
55%clean
56rm -rf $RPM_BUILD_ROOT
57
58%files
59%defattr(644,root,root,755)
60%attr(755,root,root) %{_libdir}/lib*.so.*
61
62%files devel
63%defattr(644,root,root,755)
64%doc README.txt doc
65%{_includedir}/%{name}
66%attr(755,root,root) %{_libdir}/lib*.so
This page took 0.041417 seconds and 4 git commands to generate.