view src/yasm.mk @ 3507:e9db4d0c50e5

Add yasm package * index.hml: add yasm, build-yasm. * src/build-yasm.mk: new file. * src/yasm.mk: New file. * dist-files.mk: added build-yasm.mk, yasm.mk.
author John Donoghue <john.donoghue@ieee.org>
date Thu, 06 Feb 2014 21:21:15 -0500
parents
children 9330999df0c2
line wrap: on
line source

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

PKG             := yasm
$(PKG)_VERSION  := 1.2.0
$(PKG)_CHECKSUM := 773d28f27f83c44ac35079add0d3167ca6c1def8
$(PKG)_SUBDIR   := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE     := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_URL      := http://www.tortall.net/projects/$(PKG)/releases/$($(PKG)_FILE)
$(PKG)_DEPS     := 

define $(PKG)_UPDATE
    $(WGET) -q -O- 'https://github.com/yasm/yasm/tags' | \
    $(SED) -n 's,.*href="/yasm/yasm/archive/v\([0-9][^"]*\)\.tar.*,\1,p' | \
    head -1
endef

define $(PKG)_BUILD
    # yasm is always static
    cd '$(1)' && '$(1)/configure' \
        $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
        --prefix='$(HOST_PREFIX)' \
        --disable-nls
    $(MAKE) -C '$(1)' -j '$(JOBS)' 
    $(MAKE) -C '$(1)' -j 1 install
endef