view src/msys-gzip.mk @ 5893:53a6c7df43f8

Mesa 3D: Update to version 21.1.8. * src/mesa.mk: Update version and checksum. * src/mesa-2-uninitialized.patch: Remove file. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Sep 2021 22:37:45 +0200
parents 32a7bea19bb1
children
line wrap: on
line source

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

PKG             := msys-gzip
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 1.3.12-2
$(PKG)_CHECKSUM := a8954ccefa9732cd16b68e2fb50bfef281465c78
$(PKG)_REMOTE_SUBDIR := gzip/gzip-$($(PKG)_VERSION)
$(PKG)_SUBDIR   := 
$(PKG)_FILE     := gzip-$($(PKG)_VERSION)-msys-1.0.13-bin.tar.lzma
$(PKG)_URL      := $(MSYS_BASE_URL)/$($(PKG)_REMOTE_SUBDIR)/$($(PKG)_FILE)/download
$(PKG)_DEPS     := 

define $(PKG)_UPDATE
    $(WGET) -q -O- '$(MSYS_BASE_URL)/gzip' | \
    $(SED) -n 's,.*title="gzip-\([0-9][^"]*\)".*,\1,p' | \
    head -1
endef

define $(PKG)_BUILD
    mkdir -p '$(MSYS_BASE_DIR)'
    if test $(MXE_WINDOWS_BUILD) = "yes"; then \
      for f in `find $(1)/bin -type f -exec grep -l '\/bin/sh$$' {} \;` ; do \
        echo "file $$f"; \
        $(TOP_DIR)/tools/gen-bat-wrapper `basename $$f` > $$f.bat; \
      done; \
    fi
    cd '$(1)' && tar cf - . | ( cd '$(MSYS_BASE_DIR)'; tar xpf - )
    mkdir -p '$(MSYS_INFO_DIR)'
    cd '$(1)' && find . > '$(MSYS_INFO_DIR)'/$(PKG).list
endef