annotate src/xkbcommon.mk @ 5893:53a6c7df43f8

Mesa 3D: Update to version 21.1.8. * src/mesa.mk: Update version and checksum. * src/mesa-2-uninitialized.patch: Remove file. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Sep 2021 22:37:45 +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