diff options
author | Jesse Buhagiar <jooster669@gmail.com> | 2022-01-24 20:12:05 +1100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-01-24 17:04:55 +0100 |
commit | 43ddefec9ce7a9ab63ae0f1336936cd690c20226 (patch) | |
tree | 714e5b567958e5d27d33dee7b70fa43617f815af /Ports/opfor | |
parent | 63c5cb120bb937b6ef096de013327c1696651a67 (diff) | |
download | serenity-43ddefec9ce7a9ab63ae0f1336936cd690c20226.zip |
Ports: Add Half-Life: Opposing Force port :^)
Diffstat (limited to 'Ports/opfor')
-rwxr-xr-x | Ports/opfor/package.sh | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/Ports/opfor/package.sh b/Ports/opfor/package.sh new file mode 100755 index 0000000000..696b522691 --- /dev/null +++ b/Ports/opfor/package.sh @@ -0,0 +1,54 @@ +#!/usr/bin/env -S bash ../.port_include.sh +port="opfor" +version="1.0.0" +useconfigure="true" +depends=("SDL2" "halflife") +workdir="hlsdk-xash3d-opfor" +files="https://github.com/SerenityPorts/hlsdk-xash3d/archive/opfor.tar.gz xash3d_gearbox.tar.gz" +launcher_name="Half-Life: Opposing Force" +launcher_category="Games" + +# This one is a bit tricky to build, so I'm going a little bit off the script.... +configure() { + # Configure the shared object projects (client and game) + run ./waf configure -T release +} + +build() { + # Build game shared object + run ./waf build +} + +install() { + run ./waf install --destdir=${SERENITY_INSTALL_ROOT}/home/anon/Games/halflife +} + +post_install() { + # On arch-linux systems, rename is installed as perl-rename + if command -v perl-rename &> /dev/null + then + rename_command=perl-rename + else + rename_command=rename + fi + # Strip the output libraries of their "lib" prefix + pushd ${SERENITY_INSTALL_ROOT}/home/anon/Games/halflife/gearbox/cl_dlls/ + "$rename_command" 's/^...//' lib* + popd + pushd ${SERENITY_INSTALL_ROOT}/home/anon/Games/halflife/gearbox/dlls/ + "$rename_command" 's/^...//' lib* + popd + + # Create a launch script + cat <<- 'EOF' > ${SERENITY_INSTALL_ROOT}/home/anon/Games/halflife/opfor.sh +#!/bin/sh +export LD_LIBRARY_PATH=/home/anon/Games/halflife/ +scriptdir=$(dirname "$0") +cd $scriptdir +./xash3d -console -game gearbox +EOF + chmod +x ${SERENITY_INSTALL_ROOT}/home/anon/Games/halflife/opfor.sh + + echo "Please remember to copy the 'gearbox/' folder from your own Half-Life installation" + echo "into ${SERENITY_INSTALL_ROOT}/home/anon/Games/halflife/" +} |