annotate src/build-scons.mk @ 3480:13be64f9f16d

move version info from index.html to src/*.mk files
author John W. Eaton <jwe@octave.org>
date Fri, 31 Jan 2014 16:04:01 -0500
parents 0ecfd051de81
children 7ec984651a4f
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 :=
3480
13be64f9f16d move version info from index.html to src/*.mk files
John W. Eaton <jwe@octave.org>
parents: 3450
diff changeset
6 $(PKG)_VERSION := 2.3.0
3450
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 $(PKG)_CHECKSUM := 728edf20047a9f8a537107dbff8d8f803fd2d5e3
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)
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_DEPS := build-python
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 echo $($(PKG)_VERSION)
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 endef
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 define $(PKG)_BUILD
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 cd '$(1)' && python setup.py install
0ecfd051de81 add build-scon.mk file omitted from previous commit
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 endef