annotate src/build-bison.mk @ 5534:372ea4c0afb2

Move of-ocs PKG_XXXX to inst dir and add break patch * src/of-ocs-3-break-fixes.patch, src/of-ocs-4-pkgadd-fixes.patch: new files * dist-files.mk: add ref to files
author John Donoghue <john.donoghue@ieee.org>
date Sun, 13 Sep 2020 08:15:14 -0400
parents a3133716bcaf
children f401dd018bf9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2990
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-bison
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
5368
a3133716bcaf * src/build-bison.mk: update to v3.5.4
John Donoghue <john.donoghue@ieee.org>
parents: 5011
diff changeset
6 $(PKG)_VERSION := 3.5.4
a3133716bcaf * src/build-bison.mk: update to v3.5.4
John Donoghue <john.donoghue@ieee.org>
parents: 5011
diff changeset
7 $(PKG)_CHECKSUM := 67279a74698e60093f57e1dec8e6236e0b194bb2
2990
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := bison-$($(PKG)_VERSION)
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := bison-$($(PKG)_VERSION).tar.xz
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/bison/$($(PKG)_FILE)
3198
ff92c0dc6aeb handle build-PKG dependencies in src/build-PKG.mk files
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
11 $(PKG)_DEPS := build-xz
2990
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
5329f4891fb7 build our own bison and flex
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: 4172
diff changeset
14 $(WGET) -q -O- 'http://ftp.gnu.org/gnu/bison/?C=M;O=D' | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4172
diff changeset
15 $(SED) -n 's,.*<a href="bison-\([0-9\.]*\)\.tar.*,\1,p' | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4172
diff changeset
16 $(SORT) -V | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4172
diff changeset
17 tail -1
2990
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 endef
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 define $(PKG)_BUILD
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 mkdir '$(1).build'
5329f4891fb7 build our own bison and flex
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: 2990
diff changeset
23 --prefix='$(BUILD_TOOLS_PREFIX)'
2990
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 $(MAKE) -C '$(1).build' -j '$(JOBS)'
4172
4117faf76988 default-octave-1-inttypes.patch: Remove obsolete patch file.
John W. Eaton <jwe@octave.org>
parents: 4161
diff changeset
25 $(MAKE) -C '$(1).build' -j 1 install DESTDIR='$(3)'
2990
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 endef