comparison src/xfixes.mk @ 3743:4f58c4b4dee0

build libX11 and dependencies
author John W. Eaton <jwe@octave.org>
date Wed, 19 Nov 2014 11:12:26 -0500
parents
children 58de4f56c797
comparison
equal deleted inserted replaced
3742:14869a85249d 3743:4f58c4b4dee0
1 # This file is part of MXE.
2 # See index.html for further information.
3
4 PKG := xfixes
5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 5.0.1
7 $(PKG)_CHECKSUM := 88e9fe9c3288feb5362fe97fa7ae534f724b75e3
8 $(PKG)_SUBDIR := libXfixes-$($(PKG)_VERSION)
9 $(PKG)_FILE := libXfixes-$($(PKG)_VERSION).tar.gz
10 $(PKG)_URL := http://xorg.freedesktop.org/archive/individual/lib/$($(PKG)_FILE)
11 $(PKG)_DEPS := fixesproto xextproto xproto x11
12
13 ifeq ($(MXE_WINDOWS_BUILD),yes)
14 define $(PKG)_BUILD
15 endef
16 else
17 define $(PKG)_BUILD
18 mkdir '$(1)/.build'
19 cd '$(1)/.build' && $($(PKG)_CONFIGURE_ENV) '$(1)/configure' \
20 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
22 --prefix='$(HOST_PREFIX)' \
23 && $(CONFIGURE_POST_HOOK)
24
25 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' install DESTDIR='$(3)'
26 endef
27 endif