annotate src/xkbcommon.mk @ 6161:8fcac4d6d983 release

of-queueing: Fix syntax error with Octave 7 (bug #62314). * src/of-queueing-1-octave7.patch: Add new file. * dist-files.mk: Include new patch.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 14 Apr 2022 19:27:13 +0200
parents ec6073e0b199
children bdbcf2e12cf6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4958
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
1 # This file is part of MXE.
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
2 # See index.html for further information.
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
3
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
4 PKG := xkbcommon
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
5 $(PKG)_IGNORE :=
5005
ec6073e0b199 * src/xkbcommon.mk: update to v0.8.4
John Donoghue
parents: 4958
diff changeset
6 $(PKG)_VERSION := 0.8.4
ec6073e0b199 * src/xkbcommon.mk: update to v0.8.4
John Donoghue
parents: 4958
diff changeset
7 $(PKG)_CHECKSUM := 0f533ffdc7fe888eedf10648895b64b01e94d06e
4958
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
8 $(PKG)_SUBDIR := libxkbcommon-$(PKG)-$($(PKG)_VERSION)
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
10 $(PKG)_URL := https://github.com/$(PKG)/libxkbcommon/archive/$($(PKG)_FILE)
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
11 $(PKG)_DEPS :=
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
12
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
13 define $(PKG)_UPDATE
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
14 $(WGET) -q -O- 'https://github.com/$(PKG)/libxkbcommon/tags' | \
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
15 $(SED) -n 's|.*releases/tag/$(PKG)-\([^"]*\).*|\1|p' | $(SORT) -V | \
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
16 tail -1
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
17 endef
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
18
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
19 define $(PKG)_BUILD
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
20 cd '$(1)' && ./autogen.sh && \
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
21 $($(PKG)_CONFIGURE_ENV) '$(1)/configure' \
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
22 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
23 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
24 --prefix='$(HOST_PREFIX)' \
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
25 && $(CONFIGURE_POST_HOOK)
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
26
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
27 $(MAKE) -C '$(1)' -j '$(JOBS)'
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
28 $(MAKE) -C '$(1)' -j 1 install DESTDIR='$(3)'
8b4d4e06075d Add xkbcommon (required by linux qt5-5.12.X)
John Donoghue
parents:
diff changeset
29 endef