comparison src/xcursor.mk @ 4491:7bf3a5b0f0fa

xcursor: New module.
author John W. Eaton <jwe@octave.org>
date Thu, 05 Oct 2017 14:24:29 -0400
parents
children 903796b2fcb6
comparison
equal deleted inserted replaced
4490:788dc298ec00 4491:7bf3a5b0f0fa
1 # This file is part of MXE.
2 # See index.html for further information.
3
4 PKG := xcursor
5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 1.1.14
7 $(PKG)_CHECKSUM := 89870756758439f9216ddf5f2d3dca56570fc6b7
8 $(PKG)_SUBDIR := libXcursor-$($(PKG)_VERSION)
9 $(PKG)_FILE := libXcursor-$($(PKG)_VERSION).tar.bz2
10 $(PKG)_URL := http://xorg.freedesktop.org/archive/individual/lib/$($(PKG)_FILE)
11 $(PKG)_DEPS :=
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