]> git.pld-linux.org Git - packages/cg.git/blob - cg.spec
15159ad47afdaf58a5501a428c64f457f40d4ce0
[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:        2.1.0017
8 Release:        1
9 License:        nVidia
10 Group:          Development
11 Source0:        http://developer.download.nvidia.com/cg/Cg_2.1/%{version}/Cg-2.1_February2009_x86.tgz
12 # Source0-md5:  8752286743ddd9d5997e698714fcc556
13 Source1:        http://developer.download.nvidia.com/cg/Cg_2.1/%{version}/Cg-2.1_February2009_x86_64.tgz
14 # Source1-md5:  01a3d1e0936c3f221ede5b6bfd8d2e0c
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 doc
49 Summary:        NVIDIA Cg Compiler documentation
50 Summary(pl.UTF-8):      Dokumentacja kompilatora Cg NVIDII
51 Group:          Development/Libraries
52
53 %description doc
54 NVIDIA Cg Compiler documentation.
55
56 %description doc -l pl.UTF-8
57 Dokumentacja kompilatora Cg NVIDII.
58
59 %package examples
60 Summary:        Cg examples
61 Summary(pl.UTF-8):      Przykłady dla Cg
62 Group:          Applications
63
64 %description examples
65 Cg examples.
66
67 %description examples -l pl.UTF-8
68 Przykłady dla Cg.
69
70 %prep
71 %ifarch %{ix86}
72 %setup -q -c
73 %endif
74 %ifarch %{x8664}
75 %setup -q -c -T -a 1
76 %endif
77
78 %install
79 rm -rf $RPM_BUILD_ROOT
80 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man3,%{_includedir}/Cg,%{_libdir},%{_examplesdir}/%{name}-%{version}}
81
82 install usr/bin/* $RPM_BUILD_ROOT%{_bindir}
83 install usr/include/Cg/* $RPM_BUILD_ROOT%{_includedir}/Cg
84 install usr/%{_lib}/* $RPM_BUILD_ROOT%{_libdir}
85 install usr/share/man/man3/* $RPM_BUILD_ROOT%{_mandir}/man3
86
87 cp -r usr/local/Cg/examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
88
89 %clean
90 rm -rf $RPM_BUILD_ROOT
91
92 %post   -p /sbin/ldconfig
93 %postun -p /sbin/ldconfig
94
95 %files
96 %defattr(644,root,root,755)
97 %doc usr/local/Cg/README
98 %attr(755,root,root) %{_bindir}/cgc
99 %attr(755,root,root) %{_libdir}/libCg.so
100 %attr(755,root,root) %{_libdir}/libCgGL.so
101 %{_mandir}/man3/cg*.3*
102
103 %files devel
104 %defattr(644,root,root,755)
105 %{_includedir}/Cg
106
107 %files doc
108 %defattr(644,root,root,755)
109 %doc usr/local/Cg/docs/{*.pdf,html/*.html}
110
111 %files examples
112 %defattr(644,root,root,755)
113 %{_examplesdir}/%{name}-%{version}
This page took 0.053177 seconds and 2 git commands to generate.