annotate src/msys2-filesystem.mk @ 7243:ae230ac322f7 default tip @

* src/sqlite.mk: update to v3460000
author John Donoghue <john.donoghue@ieee.org>
date Wed, 05 Jun 2024 10:26:58 -0400
parents 5cbb201e9b60
children
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 :=
6643
5cbb201e9b60 * src/msys2-dos2unix.mk, src/msys2-filesystem.mk, src/msys2-gcc-libs.mk,
John Donoghue <john.donoghue@ieee.org>
parents: 6609
diff changeset
7 $(PKG)_VERSION := 2023.02.07-1
5cbb201e9b60 * src/msys2-dos2unix.mk, src/msys2-filesystem.mk, src/msys2-gcc-libs.mk,
John Donoghue <john.donoghue@ieee.org>
parents: 6609
diff changeset
8 $(PKG)_x86_64_CS := ec28b755f2c794451e39daab401aef2964dad8f3
5cbb201e9b60 * src/msys2-dos2unix.mk, src/msys2-filesystem.mk, src/msys2-gcc-libs.mk,
John Donoghue <john.donoghue@ieee.org>
parents: 6609
diff changeset
9 $(PKG)_i686_CS := 89a23b0a3a5c745ab507989b5f2f7b5286085272
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 :=
5842
38d42e4346af msys2: update to lates i686/x86_64 packages
John Donoghue <john.donoghue@ieee.org>
parents: 5330
diff changeset
13 $(PKG)_FILE := $($(PKG)_NAME)-$($(PKG)_VERSION)-$(MSYS2_ARCH).pkg.tar.zst
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)
6442
1d9b775e3004 msys2: update to use an updated msys2-build32 repo for 32bit, update msys2 packages
John Donoghue <john.donoghue@ieee.org>
parents: 6434
diff changeset
15 $(PKG)_URL2 := $(if $(MSYS2_URL2),$(MSYS2_URL2)/$($(PKG)_FILE),)
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
16
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
17 $(PKG)_DEPS :=
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
18
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
19 define $(PKG)_UPDATE
4822
14328ca36f61 Add MSYS2_PKG_UPDATE rule and use in msys2 packages
John Donoghue
parents: 4793
diff changeset
20 $(MSYS2_PKG_UPDATE)
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
21 endef
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
22
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
23 define $(PKG)_BUILD
5319
cf1366413153 * src/msys2-filesystem.mk: insert mount of /tmp to user profile temp
John Donoghue
parents: 5296
diff changeset
24 echo "# mount tmp to users profile temp dir" >> "$(1)/etc/fstab"
6434
a28c2b488272 * src/msys2-filesystem.mk: Mount temp folder without ACL translation (bug #63129).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5842
diff changeset
25 echo "none /tmp usertemp binary,noacl,posix=0 0 0" >> "$(1)/etc/fstab"
6581
e5c0c787ed73 Change msys2 repo for 32bit msys2
John Donoghue <john.donoghue@ieee.org>
parents: 6574
diff changeset
26 if [ "$(MSYS2_ARCH)" = "i686" ]; then \
e5c0c787ed73 Change msys2 repo for 32bit msys2
John Donoghue <john.donoghue@ieee.org>
parents: 6574
diff changeset
27 $(SED) -i 's/\(.*refresh-keys.*\)/#\1/g' "$(1)/etc/post-install/07-pacman-key.post"; \
e5c0c787ed73 Change msys2 repo for 32bit msys2
John Donoghue <john.donoghue@ieee.org>
parents: 6574
diff changeset
28 fi
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
29 $(MSYS2_PKG_BUILD)
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents:
diff changeset
30 endef