This commit is contained in:
commit
d27664cb96
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
glew-1.4.0-src.tar.bz2
Normal file
3
glew-1.4.0-src.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7afffa823d592192fbf33e4b3cd695d252ccbe1da174f804c82e51be6ddc9416
|
||||||
|
size 245744
|
5
glew.changes
Normal file
5
glew.changes
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jul 12 17:35:17 CEST 2007 - sbrabec@suse.cz
|
||||||
|
|
||||||
|
- New SuSE package, version 1.4.0.
|
||||||
|
|
87
glew.spec
Normal file
87
glew.spec
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
#
|
||||||
|
# spec file for package glew (Version 1.4.0)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
# This file and all modifications and additions to the pristine
|
||||||
|
# package are under the same license as the package itself.
|
||||||
|
#
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
# norootforbuild
|
||||||
|
|
||||||
|
Name: glew
|
||||||
|
BuildRequires: Mesa-devel
|
||||||
|
URL: http://glew.sourceforge.net/
|
||||||
|
License: BSD 3-Clause, GPL v2 only
|
||||||
|
Group: System/Libraries
|
||||||
|
Summary: OpenGL Extension Wrangler Library
|
||||||
|
Version: 1.4.0
|
||||||
|
Release: 1
|
||||||
|
Source: %{name}-%{version}-src.tar.bz2
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
|
%description
|
||||||
|
The OpenGL Extension Wrangler Library (GLEW) is a cross-platform
|
||||||
|
open-source C/C++ extension loading library. GLEW provides efficient
|
||||||
|
run-time mechanisms for determining which OpenGL extensions are
|
||||||
|
supported on the target platform. OpenGL core and extension
|
||||||
|
functionality is exposed in a single header file.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Milan Ikits
|
||||||
|
Marcelo Magallon
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Group: System/Libraries
|
||||||
|
Summary: OpenGL Extension Wrangler Library
|
||||||
|
Requires: %{name} = %{version} Mesa-devel
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
The OpenGL Extension Wrangler Library (GLEW) is a cross-platform
|
||||||
|
open-source C/C++ extension loading library. GLEW provides efficient
|
||||||
|
run-time mechanisms for determining which OpenGL extensions are
|
||||||
|
supported on the target platform. OpenGL core and extension
|
||||||
|
functionality is exposed in a single header file.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Milan Ikits
|
||||||
|
Marcelo Magallon
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -n %{name}
|
||||||
|
|
||||||
|
%build
|
||||||
|
make %{?jobs:-j%jobs} POPT="$RPM_OPT_FLAGS" LIBDIR=%{_libdir} LDFLAGS.EXTRA=
|
||||||
|
|
||||||
|
%install
|
||||||
|
make GLEW_DEST=$RPM_BUILD_ROOT%{_prefix} LIBDIR=$RPM_BUILD_ROOT%{_libdir} LDFLAGS.EXTRA= install
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc doc/*
|
||||||
|
%{_bindir}/*info
|
||||||
|
%{_libdir}/*.so.*
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_includedir}/GL/*.h
|
||||||
|
%{_libdir}/*.*a
|
||||||
|
%{_libdir}/*.so
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Jul 12 2007 - sbrabec@suse.cz
|
||||||
|
- New SuSE package, version 1.4.0.
|
Loading…
x
Reference in New Issue
Block a user