]> git.pld-linux.org Git - packages/cg.git/blob - cg.spec
fa7a62a144f3fef4afe83f9d5c1400272e9f9e10
[packages/cg.git] / cg.spec
1 # TODO:
2 #  - link libCg.so with -lm and -lpthread
3
4 Summary:        NVIDIA Cg Compiler
5 Summary(pl.UTF-8):      Kompilator Cg NVIDII
6 Name:           cg
7 Version:        1.5.0
8 Release:        1
9 License:        nVidia
10 Group:          Development
11 Source0:        http://developer.download.nvidia.com/cg/Cg_1.5/%{version}/0019/Cg-1.5_Feb2007_x86.tar.gz
12 # Source0-md5:  36bc6b9916a82ea70fa638adf1d99ed0
13 Source1:        http://developer.download.nvidia.com/cg/Cg_1.5/%{version}/0019/Cg-1.5_Feb2007_x86_64.tar.gz
14 # Source1-md5:  4e56dce89adee688817e4337232161e0
15 URL:            http://developer.nvidia.com/object/cg_toolkit.html
16 ExclusiveArch:  %{ix86} %{x8664}
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 The NVIDIA Cg Toolkit is the best way to take advantage of today's
21 GPUs across multiple platforms and APIs. Now supporting OpenGL's
22 ARB_vertex_program and ARB_fragment_program extensions, the compiler
23 allows developers to create advanced visual effects for today's
24 programmable GPUs from NVIDIA and other vendors.
25
26 %description -l pl.UTF-8
27 Zestaw narzędzi Cg NVIDII jest najlepszym sposobem wykorzystywania
28 dzisiejszych procesorów graficznych na wielu różnych platformach.
29 Dzięki wsparciu rozszerzeń OpenGL-a ARB_vertex_program i
30 ARB_fragment_program, kompilator pozwala developerom tworzyć
31 zaawansowane efekty wizualne na programowalne układy graficzne NVIDII
32 i innych producentów.
33
34 %package devel
35 Summary:        Header files for Cg library
36 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki Cg
37 Group:          Development/Libraries
38 Requires:       %{name} = %{version}-%{release}
39 # for cgGL
40 #Requires:      OpenGL-devel
41
42 %description devel
43 This is the package containing the header files for Cg library.
44
45 %description devel -l pl.UTF-8
46 Ten pakiet zawiera pliki nagłówkowe biblioteki Cg.
47
48 %package examples
49 Summary:        Cg examples
50 Summary(pl.UTF-8):      Przykłady dla Cg
51 Group:          Applications
52
53 %description examples
54 Cg examples.
55
56 %description examples -l pl.UTF-8
57 Przykłady dla Cg.
58
59 %prep
60 %ifarch %{ix86}
61 %setup -q -c
62 %endif
63 %ifarch %{x8664}
64 %setup -q -c -T -a 1
65 %endif
66
67 %install
68 rm -rf $RPM_BUILD_ROOT
69 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man3,%{_includedir}/Cg,%{_libdir},%{_examplesdir}/%{name}-%{version}}
70
71 install usr/bin/* $RPM_BUILD_ROOT%{_bindir}
72 install usr/include/Cg/* $RPM_BUILD_ROOT%{_includedir}/Cg
73 install usr/%{_lib}/* $RPM_BUILD_ROOT%{_libdir}
74 install usr/share/man/man3/* $RPM_BUILD_ROOT%{_mandir}/man3
75
76 cp -r usr/local/Cg/examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
77
78 %clean
79 rm -rf $RPM_BUILD_ROOT
80
81 %post   -p /sbin/ldconfig
82 %postun -p /sbin/ldconfig
83
84 %files
85 %defattr(644,root,root,755)
86 %doc usr/local/Cg/{README,docs/{*.pdf,html/*.html,txt/{cg,cgGL,profiles,stdlib}}}
87 %attr(755,root,root) %{_bindir}/cgc
88 %attr(755,root,root) %{_libdir}/libCg.so
89 %attr(755,root,root) %{_libdir}/libCgGL.so
90 %{_mandir}/man3/cg*.3*
91
92 %files devel
93 %defattr(644,root,root,755)
94 %{_includedir}/Cg
95
96 %files examples
97 %defattr(644,root,root,755)
98 %{_examplesdir}/%{name}-%{version}
This page took 0.094237 seconds and 2 git commands to generate.