view src/build-gettext.mk @ 7186:19a46de50b18 default tip @

* src/jasper.mk: update to v4.2.4
author John Donoghue <john.donoghue@ieee.org>
date Thu, 02 May 2024 09:22:30 -0400
parents bc4c7d2996f3
children
line wrap: on
line source

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

PKG             := build-gettext
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 0.22.5
$(PKG)_CHECKSUM := 1c3911796312efd8119da7a292edef305bdb71bb
$(PKG)_SUBDIR   := gettext-$($(PKG)_VERSION)
$(PKG)_FILE     := gettext-$($(PKG)_VERSION).tar.gz
$(PKG)_URL      := ftp://ftp.gnu.org/pub/gnu/gettext/$($(PKG)_FILE)
$(PKG)_DEPS     := 

define $(PKG)_UPDATE
    $(WGET) -q -O- 'http://ftp.gnu.org/gnu/gettext/?C=M;O=D' | \
    $(SED) -n 's,.*<a href="gettext-\([0-9\.]*\)\.tar.*,\1,p' | \
    $(SORT) -V | \
    tail -1
endef

## See
##
## https://octave.discourse.group/t/octave-space-fails-to-build-gnutls/1573/19
##
## for a discussion about the CCACHE_NODIRECT setting below.

define $(PKG)_BUILD
  mkdir '$(1)/.build'
  cd '$(1)/.build' && \
    '$(1)/configure' \
      --prefix='$(BUILD_TOOLS_PREFIX)' \
      --without-libexpat-prefix \
      --without-libxml2-prefix \
      --without-emacs \
      $($(PKG)_CONFIGURE_OPTIONS)
  CCACHE_NODIRECT=1 $(MAKE) -C '$(1)/.build' -j '$(JOBS)'
  $(MAKE) -C '$(1)/.build' -j 1 $(MXE_DISABLE_DOCS) install DESTDIR='$(3)'
endef