mirror of
https://github.com/Perlmint/glew-cmake.git
synced 2024-11-13 10:33:48 +00:00
b1c4045781
git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@90 783a27ee-832a-0410-bc00-9f386506c6dd
19 lines
526 B
Bash
Executable File
19 lines
526 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ ! -d $1 ] ; then
|
|
mkdir $1
|
|
fi
|
|
cd $1
|
|
|
|
wget \
|
|
--mirror \
|
|
--no-parent \
|
|
--no-host-directories \
|
|
--cut-dirs=3 \
|
|
--accept=txt,html \
|
|
http://oss.sgi.com/projects/ogl-sample/registry/
|
|
|
|
sed -i -e '7s/\<ATI_/GL_ATI_/' ATI/texture_env_combine3.txt
|