annotate src/msys2-filesystem.mk @ 5330:48413c4ad0d0

Update to latest msys2 packages * src/msys2-bash.mk, src/msys2-filesystem.mk, src/msys2-gmp.mk, src/msys2-libgpg-error.mk, src/msys2-libgpgme.mk, src/msys2-libreadline.mk, src/msys2-ncurses.mk, src/src-msys2-bash.mk, src/src-msys2-filesystem.mk, src/src-msys2-gmp.mk, src/src-msys2-libgpg-error.mk, src/src-msys2-libgpgme.mk, src/src-msys2-libreadline.mk, src/src-msys2-ncurses.mk: update version/checksum
author John Donoghue
date Fri, 28 Feb 2020 11:48:45 -0500
parents cf1366413153
children 38d42e4346af
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
1 # This file is part of MXE.
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
2 # See index.html for further information.
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
3
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
4 PKG := msys2-filesystem
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
5 $(PKG)_NAME := filesystem
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
6 $(PKG)_IGNORE :=
5330
48413c4ad0d0 Update to latest msys2 packages
John Donoghue
parents: 5319
diff changeset
7 $(PKG)_VERSION := 2020.02-2
48413c4ad0d0 Update to latest msys2 packages
John Donoghue
parents: 5319
diff changeset
8 $(PKG)_x86_64_CS := 57a49aac59dffaa450062ab0b35804b2e2bd438f
48413c4ad0d0 Update to latest msys2 packages
John Donoghue
parents: 5319
diff changeset
9 $(PKG)_i686_CS := 1327b7ed5b9b543ba78826374d8f66b4b24ac518
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
10 $(PKG)_CS := $($(PKG)_$(MSYS2_ARCH)_CS)
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
11 $(PKG)_CHECKSUM := $($(PKG)_CS)
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
12 $(PKG)_SUBDIR :=
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
13 $(PKG)_FILE := $($(PKG)_NAME)-$($(PKG)_VERSION)-$(MSYS2_ARCH).pkg.tar.xz
5265
a7bbb803f069 * Makefile.in: update urls and msys2 rules to go to repo.msys2.org
John Donoghue
parents: 4920
diff changeset
14 $(PKG)_URL := $(MSYS2_URL)/$($(PKG)_FILE)
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
15
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
16 $(PKG)_DEPS :=
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
17
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
18 define $(PKG)_UPDATE
4822
14328ca36f61 Add MSYS2_PKG_UPDATE rule and use in msys2 packages
John Donoghue
parents: 4793
diff changeset
19 $(MSYS2_PKG_UPDATE)
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
20 endef
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
21
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
22 define $(PKG)_BUILD
5319
cf1366413153 * src/msys2-filesystem.mk: insert mount of /tmp to user profile temp
John Donoghue
parents: 5296
diff changeset
23 echo "# mount tmp to users profile temp dir" >> "$(1)/etc/fstab"
cf1366413153 * src/msys2-filesystem.mk: insert mount of /tmp to user profile temp
John Donoghue
parents: 5296
diff changeset
24 echo "none /tmp usertemp binary,posix=0 0 0" >> "$(1)/etc/fstab"
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
25 $(MSYS2_PKG_BUILD)
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
26 endef