mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-14 10:13:49 +00:00
19 lines
530 B
Bash
19 lines
530 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ ! -d $1 ] ; then
|
||
|
mkdir $1
|
||
|
cd $1
|
||
|
fi
|
||
|
|
||
|
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
|