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