view src/s2tc.mk @ 5531:eae508c12529

Add build rule for build-octave (bug #49503). * src/build-octave.mk: Add new build rule for build-octave which can be used for cross-building binary packages that depend on Octave as a build tool. * dist-files.mk: Add new file to list. * index.html: Add new package to list. * src/of-communications.mk, src/of-image.mk, src/of-mapping.mk, src/of-optiminterp.mk, src/of-sparsersb.mk, src/of-statistics.mk, src/of-windows.mk: Add optional dependency on build-octave. * configure.ac: Add new configure switch "--disable-system-octave" that is needed to build the build-octave package. * Makefile.in: Add variable "USE_SYSTEM_OCTAVE". Exclude build-octave from the default build tools and build it only if a package explicitly depends on it. Display warning about missing native Octave version only if necessary.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 08 Sep 2020 23:04:38 +0200
parents de2eedecd6ba
children
line wrap: on
line source

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

PKG             := s2tc
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 1.0
$(PKG)_CHECKSUM := 08295ae27abe2718f7be01f490e7a08353060291
$(PKG)_SUBDIR   := s2tc-$($(PKG)_VERSION)
$(PKG)_FILE     := s2tc-$($(PKG)_VERSION).zip
$(PKG)_URL      := https://github.com/divVerent/s2tc/archive/v$($(PKG)_VERSION).zip
$(PKG)_DEPS     := mesa-proto

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

define $(PKG)_BUILD
  cd '$(1)' && ./autogen.sh
  mkdir '$(1)/.build'
  cd '$(1)/.build' && $($(PKG)_CONFIGURE_ENV) '$(1)/configure' \
      $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
      $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
      $(ENABLE_SHARED_OR_STATIC) \
      --prefix='$(HOST_PREFIX)' \
      --disable-tools \
      && $(CONFIGURE_POST_HOOK)

  $(MAKE) -C '$(1)/.build' -j '$(JOBS)' install DESTDIR='$(3)'

  ## Mesa attempts to dynamically load dxtn.dll on Windows systems.
  if [ $(MXE_WINDOWS_BUILD) = yes ]; then \
    mv '$(3)$(HOST_BINDIR)/libtxc_dxtn-0.dll' '$(3)$(HOST_BINDIR)/dxtn.dll'; \
  fi
endef