Skip to content

Commit 0a419ea

Browse files
committed
Merge branch 'update-warzone2100' of github.com:luxtorpeda-dev/packages into update-warzone2100
2 parents a67be59 + 9da8f17 commit 0a419ea

File tree

29 files changed

+1142
-390
lines changed

29 files changed

+1142
-390
lines changed

common/lib.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,14 @@ install_autoconf () {
103103
autoconf --version
104104
}
105105

106+
install_cmake () {
107+
wget https://github.com/Kitware/CMake/releases/download/v4.1.1/cmake-4.1.1-linux-x86_64.sh
108+
chmod +x cmake-4.1.1-linux-x86_64.sh
109+
sudo mkdir -p /opt/cmake
110+
sudo ./cmake-4.1.1-linux-x86_64.sh --skip-license --prefix=/opt/cmake
111+
sudo ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake
112+
}
113+
106114
start_vcpkg () {
107115
# sets up paths
108116
export VCPKG_INSTALLED_PATH="$PWD/vcpkg_installed/x64-linux-dynamic"

common/start_build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ pushd "engines/$ENGINE_NAME"
99
process_engine_environment
1010
setup_dotnet_repository
1111
setup_openjdk_repository
12+
install_cmake
1213
log_environment
1314
setup_dist_dirs "$STEAM_APP_ID_LIST"
1415

engines/classic-rbdoom-3-bfg/build.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,17 @@ git clone https://github.com/MadDeCoDeR/BFA-Assets.git
1111
pushd BFA-Assets
1212
popd
1313

14+
export sourcedir="$PWD/source"
15+
16+
pushd source/vcpkg
17+
git apply "$sourcedir"/.github/tools/openal-fix.patch
18+
popd
19+
1420
pushd "source/neo"
1521
mkdir build
1622
cd build
1723
cmake \
1824
-DCMAKE_BUILD_TYPE=Retail \
19-
-DSDL2=ON \
2025
-DCMAKE_PREFIX_PATH="$pfx" \
2126
--preset=linux-retail \
2227
..

engines/classic-rbdoom-3-bfg/env.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
"python3-jinja2"
1717
],
1818
"GCC_12": true,
19-
"COMMIT_HASH": "c41ff30"
19+
"COMMIT_HASH": "0e6783f"
2020
}

engines/cnc-generals/env.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
],
1515
"LICENSE_PATH": "./source/LICENSE.md",
1616
"COMMON_PACKAGE": true,
17-
"COMMIT_HASH": "071e451",
17+
"COMMIT_HASH": "5871e56",
1818
"GCC_14": true
1919
}

engines/commander-genius/env.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"9180"
44
],
55
"LICENSE_PATH": "./source/COPYRIGHT",
6-
"COMMIT_TAG": "v3.6.0"
6+
"COMMIT_TAG": "v3.6.1"
77
}

engines/dii4a/env.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
],
66
"LICENSE_PATH": "./source/LICENSE",
77
"COMMON_PACKAGE": true,
8-
"COMMIT_HASH": "34a56ea"
8+
"COMMIT_HASH": "b6d3ce1"
99
}

engines/ecwolf/env.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
],
77
"LICENSE_PATH": "./source/docs/copyright",
88
"COMMON_PACKAGE": true,
9-
"COMMIT_TAG": "1.5pre"
9+
"COMMIT_TAG": "1.4.2"
1010
}

engines/eduke32/env.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
],
99
"LICENSE_PATH": "./source/source/duke3d/gpl-2.0.txt",
1010
"COMMON_PACKAGE": true,
11-
"COMMIT_HASH": "126f35c"
11+
"COMMIT_HASH": "e5aad18"
1212
}

engines/exhumed/env.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
],
55
"LICENSE_PATH": "./source/source/exhumed/gpl-2.0.txt",
66
"COMMON_PACKAGE": true,
7-
"COMMIT_TAG": "r14262"
7+
"COMMIT_TAG": "r14267"
88
}

0 commit comments

Comments
 (0)