view src/xau.mk @ 3962:76247f439f51

of-strings: update to v1.2.0 * src/of-strings.mk: update version, checksum, subdir * src/of-strings-1-fixes.patch: update cross build patch * build_packages.m: update strings version number
author John Donoghue
date Mon, 08 Jun 2015 13:49:11 -0400
parents 4f58c4b4dee0
children 58de4f56c797
line wrap: on
line source

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

PKG             := xau
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 1.0.8
$(PKG)_CHECKSUM := 2544aa44737897832d9bf80151f30f7e0bb4f341
$(PKG)_SUBDIR   := libXau-$($(PKG)_VERSION)
$(PKG)_FILE     := libXau-$($(PKG)_VERSION).tar.gz
$(PKG)_URL      := http://xorg.freedesktop.org/archive/individual/lib/$($(PKG)_FILE)
$(PKG)_DEPS     := xproto

ifeq ($(MXE_WINDOWS_BUILD),yes)
  define $(PKG)_BUILD
  endef
else
  define $(PKG)_BUILD
    mkdir '$(1)/.build'
    cd '$(1)/.build' && $($(PKG)_CONFIGURE_ENV) '$(1)/configure' \
        $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
        $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
        --prefix='$(HOST_PREFIX)' \
        && $(CONFIGURE_POST_HOOK)

    $(MAKE) -C '$(1)/.build' -j '$(JOBS)' install DESTDIR='$(3)'
  endef
endif