]> git.pld-linux.org Git - packages/GLee.git/blob - GLee.spec
- pl
[packages/GLee.git] / GLee.spec
1 Summary:        OpenGL Easy Extension library
2 Summary(pl):    Biblioteka OpenGL Easy Extension
3 Name:           GLee
4 Version:        3.03
5 Release:        0.5
6 License:        BSD-like
7 Group:          X11/Libraries
8 Source0:        http://elf-stone.com/downloads/GLee/%{name}-%{version}-src.tar.gz
9 # Source0-md5:  84664f6545ed890ea87244c1ea5b2259
10 URL:            http://elf-stone.com/downloads.php
11 BuildRequires:  OpenGL-devel
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 Requires:       OpenGL
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 The OpenGL Easy Extension library (GLee) makes life easier for OpenGL
19 developers by automatically linking OpenGL extensions and core
20 functions at initialisation time. This saves programmers the effort of
21 manually linking every required extension, and effectively brings the
22 OpenGL library up to date.
23
24 %description -l pl
25 Biblioteka OpenGL Easy Extension (GLee) u³atwia ¿ycie programistom
26 u¿ywaj±cym OpenGL poprzez automatyczne linkowanie rozszerzeñ OpenGL i
27 g³ównych funkcji w czasie inicjalizacji. Oszczêdza to programistom
28 trudów rêcznego linkowania ka¿dego wymaganego rozszerzenia i
29 efektywnie czyni bibliotekê OpenGL aktualn±.
30
31 %prep
32 %setup -q -n glee
33
34 %build
35 %configure
36 %{__make}
37
38 %install
39 rm -rf $RPM_BUILD_ROOT
40 install -d $RPM_BUILD_ROOT{%{_includedir}/GL,%{_libdir}}
41
42 %{__make} install \
43         DESTDIR=$RPM_BUILD_ROOT \
44         INCLUDEDIR=$RPM_BUILD_ROOT%{_includedir} \
45         LIBDIR=$RPM_BUILD_ROOT%{_libdir} \
46         DATADIR=$RPM_BUILD_ROOT%{_datadir} \
47         LDCONFIG=/bin/true
48
49 %clean
50 rm -rf $RPM_BUILD_ROOT
51
52 %post   -p /sbin/ldconfig
53 %postun -p /sbin/ldconfig
54
55 %files
56 %defattr(644,root,root,755)
57 %doc extensionList.txt readme.txt
58 %attr(755,root,root) %{_libdir}/lib*.so
59 %{_includedir}/GL/*
This page took 0.123612 seconds and 4 git commands to generate.