annotate src/glew.mk @ 1971:ffed90770a93

binutils glew imagemagick libffi x264
author Mark Brand <mabrand@mabrand.nl>
date Sun, 28 Aug 2011 21:26:01 +0200
parents ffb336a0e80b
children a8709467c874
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
641
dab071eac9c0 simplified file markers
Volker Grabsch <vog@notjusthosting.com>
parents: 639
diff changeset
1 # This file is part of mingw-cross-env.
714
29f1ba4559ae point consequently to "doc/index.html" instead of "doc/index.html or doc/README"
Volker Grabsch <vog@notjusthosting.com>
parents: 641
diff changeset
2 # See doc/index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 408
diff changeset
3
232
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 # GLEW
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
5 PKG := glew
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 422
diff changeset
6 $(PKG)_IGNORE :=
1971
ffed90770a93 binutils glew imagemagick libffi x264
Mark Brand <mabrand@mabrand.nl>
parents: 1839
diff changeset
7 $(PKG)_VERSION := 1.7.0
ffed90770a93 binutils glew imagemagick libffi x264
Mark Brand <mabrand@mabrand.nl>
parents: 1839
diff changeset
8 $(PKG)_CHECKSUM := 9266f2360c1687a96f2ea06419671d370b2928d1
639
14310a48d979 update version of package glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents: 448
diff changeset
9 $(PKG)_SUBDIR := glew-$($(PKG)_VERSION)
14310a48d979 update version of package glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents: 448
diff changeset
10 $(PKG)_FILE := glew-$($(PKG)_VERSION).tgz
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
11 $(PKG)_WEBSITE := http://glew.sourceforge.net/
422
d2f5eb27e051 improved download URLs for all SourceForge packages to ensure that the selected SOURCEFORGE_MIRROR is really used
Volker Grabsch <vog@notjusthosting.com>
parents: 417
diff changeset
12 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/glew/glew/$($(PKG)_VERSION)/$($(PKG)_FILE)
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
13 $(PKG)_DEPS := gcc
232
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 define $(PKG)_UPDATE
1462
61dda1d437e2 improved update script of packages: boost cppunit cunit expat freetype glew pcre pdcurses wxwidgets
Volker Grabsch <vog@notjusthosting.com>
parents: 1447
diff changeset
16 wget -q -O- 'http://sourceforge.net/projects/glew/files/glew/' | \
1033
dd28c487a6b1 improved version recognition of packages: boost freetype gcc glew libgee mingwrt openssl pcre pdcurses w32api wxwidgets
Volker Grabsch <vog@notjusthosting.com>
parents: 956
diff changeset
17 $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \
dd28c487a6b1 improved version recognition of packages: boost freetype gcc glew libgee mingwrt openssl pcre pdcurses w32api wxwidgets
Volker Grabsch <vog@notjusthosting.com>
parents: 956
diff changeset
18 head -1
232
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 endef
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 define $(PKG)_BUILD
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 cd '$(1)' && $(TARGET)-gcc -O2 -DGLEW_STATIC -Iinclude -c -o glew.o src/glew.c
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 cd '$(1)' && $(TARGET)-ar cr libGLEW.a glew.o
242
4732cfd0d858 use ranlib to build the library of package glew
Volker Grabsch <vog@notjusthosting.com>
parents: 241
diff changeset
24 $(TARGET)-ranlib '$(1)/libGLEW.a'
1535
c38635d65658 package glew: make use of the provided pkg-config file
Martin Lambers <marlam@marlam.de>
parents: 1462
diff changeset
25 $(SED) \
c38635d65658 package glew: make use of the provided pkg-config file
Martin Lambers <marlam@marlam.de>
parents: 1462
diff changeset
26 -e "s|@prefix@|$(PREFIX)/$(TARGET)|g" \
c38635d65658 package glew: make use of the provided pkg-config file
Martin Lambers <marlam@marlam.de>
parents: 1462
diff changeset
27 -e "s|@libdir@|$(PREFIX)/$(TARGET)/lib|g" \
c38635d65658 package glew: make use of the provided pkg-config file
Martin Lambers <marlam@marlam.de>
parents: 1462
diff changeset
28 -e "s|@exec_prefix@|$(PREFIX)/$(TARGET)/bin|g" \
c38635d65658 package glew: make use of the provided pkg-config file
Martin Lambers <marlam@marlam.de>
parents: 1462
diff changeset
29 -e "s|@includedir@|$(PREFIX)/$(TARGET)/include/GL|g" \
c38635d65658 package glew: make use of the provided pkg-config file
Martin Lambers <marlam@marlam.de>
parents: 1462
diff changeset
30 -e "s|@version@|$(glew_VERSION)|g" \
1839
ffb336a0e80b bugfix for the pkg-config script of package glew
Martin Lambers <marlam@marlam.de>
parents: 1826
diff changeset
31 -e "s|@cflags@|-DGLEW_STATIC|g" \
ffb336a0e80b bugfix for the pkg-config script of package glew
Martin Lambers <marlam@marlam.de>
parents: 1826
diff changeset
32 -e "s|-l@libname@|-lGLEW -lopengl32|g" \
1535
c38635d65658 package glew: make use of the provided pkg-config file
Martin Lambers <marlam@marlam.de>
parents: 1462
diff changeset
33 < '$(1)'/glew.pc.in > '$(1)'/glew.pc
285
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
34 $(INSTALL) -d '$(PREFIX)/$(TARGET)/lib'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
35 $(INSTALL) -m644 '$(1)/libGLEW.a' '$(PREFIX)/$(TARGET)/lib/'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
36 $(INSTALL) -m644 '$(1)/libGLEW.a' '$(PREFIX)/$(TARGET)/lib/libglew32s.a'
1535
c38635d65658 package glew: make use of the provided pkg-config file
Martin Lambers <marlam@marlam.de>
parents: 1462
diff changeset
37 $(INSTALL) -d '$(PREFIX)/$(TARGET)/lib/pkgconfig'
c38635d65658 package glew: make use of the provided pkg-config file
Martin Lambers <marlam@marlam.de>
parents: 1462
diff changeset
38 $(INSTALL) -m644 '$(1)/glew.pc' '$(PREFIX)/$(TARGET)/lib/pkgconfig/'
285
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
39 $(INSTALL) -d '$(PREFIX)/$(TARGET)/include'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
40 $(INSTALL) -d '$(PREFIX)/$(TARGET)/include/GL'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
41 $(INSTALL) -m644 '$(1)/include/GL/glew.h' '$(1)/include/GL/wglew.h' '$(PREFIX)/$(TARGET)/include/GL/'
232
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
42 endef