view src/zeromq.mk @ 3966:e1c46df42951

of-netcdf: update to 1.0.7 * src/of-netcdf.mk: update versuion, checksum * build_packages.m: update netcdf version * src/of-netcdf-1-cross-fixes.patch: removed file * dist-files.mk: removed of-netcdf-1-cross-fixes.patch
author John Donoghue <john.donoghue@ieee.org>
date Mon, 15 Jun 2015 20:50:52 -0400
parents 8657bb199f09
children 4166ce402753
line wrap: on
line source

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

PKG             := zeromq
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 4.0.5
$(PKG)_CHECKSUM := a664ec63661a848ef46114029156a0a6006feecd
$(PKG)_SUBDIR   := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE     := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_URL      := http://download.zeromq.org/$($(PKG)_FILE)
$(PKG)_DEPS     := pthreads

define $(PKG)_UPDATE
    echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
    echo $($(PKG)_VERSION)
endef

define $(PKG)_BUILD
    cd '$(1)' && ./configure \
        $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
        --prefix='$(HOST_PREFIX)' \
        $(ENABLE_SHARED_OR_STATIC) 
    $(MAKE) -C '$(1)' -j '$(JOBS)'
    $(MAKE) -C '$(1)' -j 1 install
endef