Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
parent
21302cbc3e
commit
a15040f15d
4 changed files with 21 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -53,3 +53,6 @@ eden-windows-msvc
|
||||||
artifacts
|
artifacts
|
||||||
*.AppImage*
|
*.AppImage*
|
||||||
/install*
|
/install*
|
||||||
|
|
||||||
|
# Prevent clobbering with upstream docs
|
||||||
|
/docs/CPMUtil.md
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
# SPDX-FileCopyrightText: Copyright 2025 crueter
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
# This is a slightly modified version of CPM.cmake
|
||||||
|
|
||||||
# CPM.cmake - CMake's missing package manager
|
# CPM.cmake - CMake's missing package manager
|
||||||
# ===========================================
|
# ===========================================
|
||||||
# See https://github.com/cpm-cmake/CPM.cmake for usage and update instructions.
|
# See https://github.com/cpm-cmake/CPM.cmake for usage and update instructions.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
|
|
||||||
# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
# SPDX-FileCopyrightText: Copyright 2025 crueter
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
# fd is slightly faster on NVMe (the syntax sux though)
|
# fd is slightly faster on NVMe (the syntax sux though)
|
||||||
|
|
|
@ -1,6 +1,16 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
|
|
||||||
# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
# SPDX-FileCopyrightText: Copyright 2025 crueter
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
wget -O CMakeModules/CPM.cmake https://github.com/cpm-cmake/CPM.cmake/releases/latest/download/CPM.cmake
|
# updates CPMUtil, its docs, and related tools from the latest release
|
||||||
|
|
||||||
|
if command -v zstd > /dev/null; then
|
||||||
|
EXT=tar.zst
|
||||||
|
else
|
||||||
|
EXT=tar.gz
|
||||||
|
fi
|
||||||
|
|
||||||
|
wget "https://git.crueter.xyz/CMake/CPMUtil/releases/download/continuous/CPMUtil.$EXT"
|
||||||
|
tar xf "CPMUtil.$EXT"
|
||||||
|
rm "CPMUtil.$EXT"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue