annotate src/msys-msys-core.mk @ 3293:cf6f40cededb

Support file list generation in packages. For the following modules: - arpack - blas - build-autoconf - build-automake - build-cmake - build-gperf - build-libtool - build-msvctools - build-pkg-config - build-texinfo - bzip2 - curl - dbus - expat - fftw - fltk - fontconfig - freetype - gettext - glpk - gmp - gnuplot - gnutls - graphicsmagick - hdf5 - jasper - jpeg - lapack - lcms - libgcrypt - libgpg_error - libiconv - libidn - libpng - libssh2 - libxml2 - ncurses - nettle - openssl - pcre - pstoedit - zlib - qhull - qrupdate - qscintilla - qt - readline - suitesparse - texinfo - tiff
author Michael Goffioul <michael.goffioul@gmail.com>
date Sat, 09 Nov 2013 23:28:04 -0500
parents 100e618349f7
children 13be64f9f16d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2956
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := msys-msys-core
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 $(PKG)_CHECKSUM := 36d52ca7066eb6ad0da68c6f31214416f4c9dcec
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 $(PKG)_REMOTE_SUBDIR := msys-core/msys-$($(PKG)_VERSION)
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR :=
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := msysCORE-$($(PKG)_VERSION)-msys-1.0.18-bin.tar.lzma
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := $(MSYS_BASE_URL)/$($(PKG)_REMOTE_SUBDIR)/$($(PKG)_FILE)/download
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_DEPS :=
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 echo $($(PKG)_VERSION)
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 endef
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 define $(PKG)_BUILD
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 mkdir -p '$(MSYS_BASE_DIR)'
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
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
dfa81fbfc1f5 msys binary packages
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 endef