annotate src/build-scons.mk @ 5509:9b74815e8337

binutils: update to v2.35 * src/build-binutils.mk, src/native-binutils.mk: update version, checksum
author John Donoghue <john.donoghue@ieee.org>
date Wed, 12 Aug 2020 07:33:57 -0400
parents 54ef2bc252bf
children 44be3d301611
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3450
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-scons
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
5372
54ef2bc252bf * src/build-scons.mk: update to v3.1.2
John Donoghue <john.donoghue@ieee.org>
parents: 5014
diff changeset
6 $(PKG)_VERSION := 3.1.2
54ef2bc252bf * src/build-scons.mk: update to v3.1.2
John Donoghue <john.donoghue@ieee.org>
parents: 5014
diff changeset
7 $(PKG)_CHECKSUM := d7541717d503266b37004a33246b6688fe87dec0
3450
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := scons-$($(PKG)_VERSION)
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := scons-$($(PKG)_VERSION).tar.gz
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := http://prdownloads.sourceforge.net/scons/$($(PKG)_FILE)
3610
566fd51378f2 Use system python in native mingw
John Donoghue
parents: 3596
diff changeset
11 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
566fd51378f2 Use system python in native mingw
John Donoghue
parents: 3596
diff changeset
12 $(PKG)_DEPS :=
566fd51378f2 Use system python in native mingw
John Donoghue
parents: 3596
diff changeset
13 else
566fd51378f2 Use system python in native mingw
John Donoghue
parents: 3596
diff changeset
14 $(PKG)_DEPS := build-python
566fd51378f2 Use system python in native mingw
John Donoghue
parents: 3596
diff changeset
15 endif
3450
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 define $(PKG)_UPDATE
4545
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4011
diff changeset
18 $(WGET) -q -O- https://sourceforge.net/projects/scons/files/scons/ | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4011
diff changeset
19 $(SED) -n 's|.*<tr title=\"\([0-9][^"]*\)".*|\1|p' | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4011
diff changeset
20 head -1
3450
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 endef
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 define $(PKG)_BUILD
3970
57e25cd3e76b build-scons.mk: specify the install prefix
John Donoghue
parents: 3610
diff changeset
24 cd '$(1)' && python setup.py install --prefix='$(BUILD_TOOLS_PREFIX)'
3450
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 endef