annotate src/build-m4.mk @ 5545:78a98ff1efd8

configure.ac: Default USE_SYSTEM_OCTAVE to MXE_NATIVE_BUILD (bug #49503).
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 02 Oct 2020 13:54:27 +0200
parents 88bfbf0fa188
children 5bf7c01b1bf7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3201
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-m4
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
4550
88bfbf0fa188 build-m4: update to v1.4.18
John D
parents: 4545
diff changeset
6 $(PKG)_VERSION := 1.4.18
88bfbf0fa188 build-m4: update to v1.4.18
John D
parents: 4545
diff changeset
7 $(PKG)_CHECKSUM := 2f76f8105a45b05c8cfede97b3193cd88b31c657
3201
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := m4-$($(PKG)_VERSION)
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := m4-$($(PKG)_VERSION).tar.gz
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/m4/$($(PKG)_FILE)
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_DEPS :=
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
ce8bf9230005 build-m4: new package
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/m4/?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="m4-\([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
3201
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 endef
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 define $(PKG)_BUILD
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 mkdir '$(1).build'
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 cd '$(1).build' && '$(1)/configure' \
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 --prefix='$(BUILD_TOOLS_PREFIX)'
ce8bf9230005 build-m4: new package
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: 3753
diff changeset
25 $(MAKE) -C '$(1).build' -j 1 install DESTDIR='$(3)'
3201
ce8bf9230005 build-m4: new package
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 endef