view src/glu.mk @ 6257:a09bdc36cc34 release octave-rc-7.1.90

Update version numbers and build rules for Octave 7.1.90 release candidate. * src/stable-octave.mk: Update version to 7.1.91. * src/release-octave.mk: Update version to 7.1.90. Update checksum and URL for release candidate.
author John W. Eaton <jwe@octave.org>
date Mon, 13 Jun 2022 14:33:47 -0400
parents 005f1b76cbab
children 1453118dcf1b
line wrap: on
line source

# This file is part of MXE.
# See index.html for further information.

PKG             := glu
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 9.0.1
$(PKG)_CHECKSUM := b6ffef562ba55d3f80146d4238589cb9b1de66f5
$(PKG)_SUBDIR   := glu-$($(PKG)_VERSION)
$(PKG)_FILE     := glu-$($(PKG)_VERSION).tar.xz
$(PKG)_URL      := ftp://ftp.freedesktop.org/pub/mesa/glu/$($(PKG)_FILE)
$(PKG)_DEPS     := mesa

define $(PKG)_UPDATE
    echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
    echo $($(PKG)_VERSION)
endef

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