Magellan Linux

Contents of /tags/openglupdate-2_2_13/update-headers.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1325 - (show annotations) (download) (as text)
Mon May 30 09:01:06 2011 UTC (13 years ago) by niro
File MIME type: application/x-sh
File size: 196 byte(s)
tagged 'openglupdate-2_2_13'
1 #!/bin/bash
2
3 URL="http://www.opengl.org/registry/api"
4 HEADERS="glext.h glxext.h"
5
6 for i in ${HEADERS}
7 do
8 echo "fetching ${URL}/${i}..."
9 [[ -f $(pwd)/${i} ]] && rm ${i}
10 wget -c ${URL}/${i}
11 done