view src/build-nasm.mk @ 6530:8ea9085d1f80

of-control: Fix compatibility with Octave 9. * src/of-control-2-octave-9-compat.patch: Add patch that replaces functions and classes that have been deprecated in Octave 7 and removed from Octave 9. * dist-files.mk: Add new file to list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 17 Nov 2022 10:40:12 +0100
parents e3d5c8a7bc4f
children
line wrap: on
line source

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

PKG             := build-nasm
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 2.14.02
$(PKG)_CHECKSUM := 7e9cb20d49ca279c72125b2701b3457c9d1609a5
$(PKG)_SUBDIR   := nasm-$($(PKG)_VERSION)
$(PKG)_FILE     := nasm-$($(PKG)_VERSION).tar.xz
$(PKG)_URL      := https://www.nasm.us/pub/nasm/releasebuilds/$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_DEPS     := 

define $(PKG)_UPDATE
    $(WGET) -q -O- 'https://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D' | \
    $(SED) -n 's,.*href="\([0-9\.]*[^a-z]\)/".*,\1,p' | \
    head -1
endef

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