]> git.pld-linux.org Git - packages/GLee.git/commitdiff
- initial
authorPaweł Gołaszewski <blues@pld-linux.org>
Fri, 15 Jul 2005 22:19:30 +0000 (22:19 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    GLee.spec -> 1.1

GLee.spec [new file with mode: 0644]

diff --git a/GLee.spec b/GLee.spec
new file mode 100644 (file)
index 0000000..934d993
--- /dev/null
+++ b/GLee.spec
@@ -0,0 +1,47 @@
+Summary:       OpenGL Easy Extension library
+Name:          GLee
+Version:       3.03
+Release:       0.5
+License:       BSD-like
+Group:         X11/Libraries
+Source0:       http://elf-stone.com/downloads/GLee/%{name}-%{version}-src.tar.gz
+# Source0-md5: 84664f6545ed890ea87244c1ea5b2259
+URL:           http://elf-stone.com/downloads.php
+BuildRequires: OpenGL-devel
+BuildRequires: autoconf
+BuildRequires: automake
+Requires:      OpenGL
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The OpenGL Easy Extension library (GLee) makes life easier for OpenGL developers by automatically linking OpenGL extensions and core functions at initialisation time. This saves programmers the effort of manually linking every required extension, and effectively brings the OpenGL library up to date.
+
+%prep
+%setup -q -n glee
+
+%build
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_includedir}/GL,%{_libdir}}
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT \
+       INCLUDEDIR=$RPM_BUILD_ROOT%{_includedir} \
+       LIBDIR=$RPM_BUILD_ROOT%{_libdir} \
+       DATADIR=$RPM_BUILD_ROOT%{_datadir} \
+       LDCONFIG=/bin/true
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post   -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc extensionList.txt readme.txt
+%attr(755,root,root) %{_libdir}/lib*.so
+%{_includedir}/GL/*
This page took 0.077871 seconds and 4 git commands to generate.