# HG changeset patch # User John W. Eaton # Date 1507292823 14400 # Node ID 4c0606a85383845d6cfb069e390ca379952318ea # Parent 7bf3a5b0f0fac2ac60bc25848bcc94faff5fc59d glu: New module. diff -r 7bf3a5b0f0fa -r 4c0606a85383 index.html --- a/index.html Thu Oct 05 14:24:29 2017 -0400 +++ b/index.html Fri Oct 06 08:27:03 2017 -0400 @@ -1274,14 +1274,14 @@ giflib + gl2ps + GL2PS + + glew GLEW - gl2ps - GL2PS - - glib GLib @@ -1298,6 +1298,10 @@ glproto + glu + GLU + + gmp GMP diff -r 7bf3a5b0f0fa -r 4c0606a85383 src/glu.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/glu.mk Fri Oct 06 08:27:03 2017 -0400 @@ -0,0 +1,27 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := glu +$(PKG)_IGNORE := +$(PKG)_VERSION := 9.0.0 +$(PKG)_CHECKSUM := c2814bbaf1e60e28a75ec80f4646047c0da742bd +$(PKG)_SUBDIR := glu-$($(PKG)_VERSION) +$(PKG)_FILE := glu-$($(PKG)_VERSION).tar.bz2 +$(PKG)_URL := ftp://ftp.freedesktop.org/pub/mesa/glu/$($(PKG)_FILE) +$(PKG)_DEPS := mesa + +ifeq ($(MXE_WINDOWS_BUILD),yes) + define $(PKG)_BUILD + endef +else + define $(PKG)_BUILD + mkdir '$(1)/.build' + cd '$(1)/.build' && $($(PKG)_CONFIGURE_ENV) '$(1)/configure' \ + $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \ + $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ + --prefix='$(HOST_PREFIX)' \ + && $(CONFIGURE_POST_HOOK) + + $(MAKE) -C '$(1)/.build' -j '$(JOBS)' install DESTDIR='$(3)' + endef +endif