Magellan Linux

Annotation of /tags/openglupdate-2_3_10/update-headers.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1527 - (hide annotations) (download) (as text)
Wed Oct 5 11:47:05 2011 UTC (12 years, 7 months ago) by niro
Original Path: trunk/opengl-update/update-headers.sh
File MIME type: application/x-sh
File size: 387 byte(s)
-auto update VERSION_* too
1 niro 1320 #!/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 niro 1527
12     define="$(basename ${i} .h | tr [a-z] [A-Z)"
13     grep "^#define ${define//EXT}_${define}_VERSION" ${i} \
14     | sed "s:^#define ${define//EXT}_${define}_VERSION\ \(.*\):\1:" > VERSION_${define}
15 niro 1320 done