annotate src/build-gperf.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 59e8db2efac3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3000
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-gperf
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
4549
59e8db2efac3 build-gperf: update to v3.1
John D
parents: 4545
diff changeset
6 $(PKG)_VERSION := 3.1
59e8db2efac3 build-gperf: update to v3.1
John D
parents: 4545
diff changeset
7 $(PKG)_CHECKSUM := e3c0618c2d2e5586eda9498c867d5e4858a3b0e2
3000
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := gperf-$($(PKG)_VERSION)
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := gperf-$($(PKG)_VERSION).tar.gz
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/gperf/$($(PKG)_FILE)
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_DEPS :=
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
4545
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
14 $(WGET) -q -O- 'http://ftp.gnu.org/gnu/gperf/?C=M;O=D' | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
15 $(SED) -n 's,.*<a href="gperf-\([0-9\.]*\)\.tar.*,\1,p' | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
16 $(SORT) -V | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
17 tail -1
3000
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 endef
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 define $(PKG)_BUILD
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 mkdir '$(1).build'
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 cd '$(1).build' && '$(1)/configure' \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 3000
diff changeset
23 --prefix='$(BUILD_TOOLS_PREFIX)'
3000
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 $(MAKE) -C '$(1).build' -j '$(JOBS)'
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3012
diff changeset
25 $(MAKE) -C '$(1).build' -j 1 install DESTDIR='$(3)'
3000
ff35d61f226f include gperf in build tools
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 endef