view src/build-nasm.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 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