Mercurial > hg > mxe-octave-anirudha
annotate src/msys-xz.mk @ 3236:9d6566d9944e default tip
Added tag GSoC_end for changeset f53543bd5dd6
author | Anirudha Bose <ani07nov@gmail.com> |
---|---|
date | Tue, 24 Sep 2013 16:13:01 +0530 |
parents | 100e618349f7 |
children |
rev | line source |
---|---|
2956 | 1 # This file is part of MXE. |
2 # See index.html for further information. | |
3 | |
4 PKG := msys-xz | |
5 $(PKG)_IGNORE := | |
6 $(PKG)_CHECKSUM := | |
7 $(PKG)_REMOTE_SUBDIR := xz/xz-$($(PKG)_VERSION) | |
8 $(PKG)_SUBDIR := | |
9 $(PKG)_FILE := xz-$($(PKG)_VERSION)-msys-1.0.17-bin.tar.lzma | |
10 $(PKG)_URL := $(MSYS_BASE_URL)/$($(PKG)_REMOTE_SUBDIR)/$($(PKG)_FILE)/download | |
11 $(PKG)_DEPS := | |
12 | |
13 define $(PKG)_UPDATE | |
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2; | |
15 echo $($(PKG)_VERSION) | |
16 endef | |
17 | |
18 define $(PKG)_BUILD | |
19 mkdir -p '$(MSYS_BASE_DIR)' | |
20 cd '$(1)' && tar cf - . | ( cd '$(MSYS_BASE_DIR)'; tar xpf - ) | |
3012
100e618349f7
Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents:
2956
diff
changeset
|
21 mkdir -p '$(MSYS_INFO_DIR)' |
100e618349f7
Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents:
2956
diff
changeset
|
22 cd '$(1)' && find . > '$(MSYS_INFO_DIR)'/$(PKG).list |
2956 | 23 endef |