New package: OpenJK-0.0.20210922
* Review fixes
This commit is contained in:
parent
1272e9e376
commit
0098d6d605
10 changed files with 146 additions and 0 deletions
10
srcpkgs/OpenJK/files/OpenJK.desktop
Normal file
10
srcpkgs/OpenJK/files/OpenJK.desktop
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Name=OpenJK Jedi Academy Single Player
|
||||
Comment="Open Source Implementation of Jedi Knight II and III Engine - Jedi Academy Single Player"
|
||||
Exec=openjk_sp
|
||||
Icon=OpenJK
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Categories=Game
|
10
srcpkgs/OpenJK/files/OpenJKMP.desktop
Normal file
10
srcpkgs/OpenJK/files/OpenJKMP.desktop
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Name=OpenJK Multi Player
|
||||
Comment="Open Source Implementation of Jedi Knight II and III Engine - Multi Player"
|
||||
Exec=openjk
|
||||
Icon=OpenJK
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Categories=Game
|
10
srcpkgs/OpenJK/files/OpenJO.desktop
Normal file
10
srcpkgs/OpenJK/files/OpenJO.desktop
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Name=OpenJK Jedi Outcast
|
||||
Comment="Open Source Implementation of Jedi Knight II and III Engine - Jedi Outcast"
|
||||
Exec=openjo
|
||||
Icon=OpenJK
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Categories=Game
|
12
srcpkgs/OpenJK/files/README.voidlinux
Normal file
12
srcpkgs/OpenJK/files/README.voidlinux
Normal file
|
@ -0,0 +1,12 @@
|
|||
OpenJK requires a copy of Jedi Knight: Jedi Academy.
|
||||
You can also use this for Jedi Outcast (singleplayer only), which requires a copy as well.
|
||||
The default folder that the game will search for files is
|
||||
|
||||
Jedi Academy: ~/.local/share/openjk
|
||||
Jedi Outcast: ~/.local/share/openjo
|
||||
|
||||
You can easily link your game files by doing the following:
|
||||
|
||||
cd ~/.local/share/openjk
|
||||
mkdir base
|
||||
ln -s /path/to/game/GameData/base/* base
|
9
srcpkgs/OpenJK/files/openjk
Normal file
9
srcpkgs/OpenJK/files/openjk
Normal file
|
@ -0,0 +1,9 @@
|
|||
#! /bin/sh
|
||||
OJ_ARCH=$(uname -m)
|
||||
case "$OJ_ARCH" in
|
||||
arm*) OJ_ARCH=arm;;
|
||||
i*86*) OJ_ARCH=i386;;
|
||||
esac
|
||||
|
||||
cd /usr/lib/OpenJK/JediAcademy
|
||||
exec ./openjk.${OJ_ARCH} "$@"
|
9
srcpkgs/OpenJK/files/openjk_sp
Normal file
9
srcpkgs/OpenJK/files/openjk_sp
Normal file
|
@ -0,0 +1,9 @@
|
|||
#! /bin/sh
|
||||
OJ_ARCH=$(uname -m)
|
||||
case "$OJ_ARCH" in
|
||||
arm*) OJ_ARCH=arm;;
|
||||
i*86*) OJ_ARCH=i386;;
|
||||
esac
|
||||
|
||||
cd /usr/lib/OpenJK/JediAcademy
|
||||
exec ./openjk_sp.${OJ_ARCH} "$@"
|
9
srcpkgs/OpenJK/files/openjkded
Normal file
9
srcpkgs/OpenJK/files/openjkded
Normal file
|
@ -0,0 +1,9 @@
|
|||
#! /bin/sh
|
||||
OJ_ARCH=$(uname -m)
|
||||
case "$OJ_ARCH" in
|
||||
arm*) OJ_ARCH=arm;;
|
||||
i*86*) OJ_ARCH=i386;;
|
||||
esac
|
||||
|
||||
cd /usr/lib/OpenJK/JediAcademy
|
||||
exec ./openjkded.${OJ_ARCH} "$@"
|
9
srcpkgs/OpenJK/files/openjo
Normal file
9
srcpkgs/OpenJK/files/openjo
Normal file
|
@ -0,0 +1,9 @@
|
|||
#! /bin/sh
|
||||
OJ_ARCH=$(uname -m)
|
||||
case "$OJ_ARCH" in
|
||||
arm*) OJ_ARCH=arm;;
|
||||
i*86*) OJ_ARCH=i386;;
|
||||
esac
|
||||
|
||||
cd /usr/lib/OpenJK/JediOutcast
|
||||
exec ./openjo_sp.${OJ_ARCH} "$@"
|
34
srcpkgs/OpenJK/patches/fix-sdl2-cross-compile.patch
Normal file
34
srcpkgs/OpenJK/patches/fix-sdl2-cross-compile.patch
Normal file
|
@ -0,0 +1,34 @@
|
|||
--- a/code/CMakeLists.txt 2021-07-31 22:39:10.000000000 +0200
|
||||
+++ - 2021-09-26 21:18:25.041345027 +0200
|
||||
@@ -90,12 +90,8 @@
|
||||
${OpenJKLibDir}/SDL2/include
|
||||
)
|
||||
else()
|
||||
- find_package(SDL2 REQUIRED CONFIG)
|
||||
- if (TARGET SDL2::SDL2)
|
||||
- set(SDL2_INCLUDE_DIRS "")
|
||||
- set(SDL2_LIBRARIES SDL2::SDL2)
|
||||
- endif()
|
||||
- string(STRIP ${SDL2_LIBRARIES} SDL2_LIBRARIES)
|
||||
+ include(FindPkgConfig)
|
||||
+ pkg_search_module(SDL2 REQUIRED sdl2)
|
||||
set(SPEngineIncludeDirectories ${SPEngineIncludeDirectories} ${SDL2_INCLUDE_DIRS})
|
||||
set(SPEngineLibraries ${SPEngineLibraries} ${SDL2_LIBRARIES})
|
||||
endif()
|
||||
--- a/codemp/CMakeLists.txt 2021-07-31 22:39:10.000000000 +0200
|
||||
+++ - 2021-09-26 21:24:38.194600747 +0200
|
||||
@@ -396,12 +396,8 @@
|
||||
${OpenJKLibDir}/SDL2/include
|
||||
)
|
||||
else()
|
||||
- find_package(SDL2 REQUIRED CONFIG)
|
||||
- if (TARGET SDL2::SDL2)
|
||||
- set(SDL2_INCLUDE_DIRS "")
|
||||
- set(SDL2_LIBRARIES SDL2::SDL2)
|
||||
- endif()
|
||||
- string(STRIP ${SDL2_LIBRARIES} SDL2_LIBRARIES)
|
||||
+ include(FindPkgConfig)
|
||||
+ pkg_search_module(SDL2 REQUIRED sdl2)
|
||||
set(MPEngineIncludeDirectories ${MPEngineIncludeDirectories} ${SDL2_INCLUDE_DIRS})
|
||||
set(MPEngineLibraries ${MPEngineLibraries} ${SDL2_LIBRARIES})
|
||||
endif()
|
34
srcpkgs/OpenJK/template
Normal file
34
srcpkgs/OpenJK/template
Normal file
|
@ -0,0 +1,34 @@
|
|||
# Template file for 'OpenJK'
|
||||
pkgname=OpenJK
|
||||
version=0.0.20210922
|
||||
revision=1
|
||||
_gitrev=43e9a3da555a487e23081bbd03101e7c926a1e83
|
||||
wrksrc="${pkgname}-${_gitrev}"
|
||||
build_style=cmake
|
||||
configure_args="-DCMAKE_INSTALL_PREFIX=/usr/lib/${pkgname} -DBuildJK2SPEngine=on
|
||||
-DBuildJK2SPGame=on -DBuildJK2SPRdVanilla=on"
|
||||
hostmakedepends="pkg-config"
|
||||
makedepends="libjpeg-turbo-devel libpng-devel zlib-devel SDL2-devel"
|
||||
short_desc="Open Source Implementation of Jedi Knight II and III Engine"
|
||||
maintainer="Kenneth Dodrill <kmdodrill@protonmail.com>"
|
||||
license="GPL-2.0-only"
|
||||
homepage="https://github.com/JACoders/OpenJK"
|
||||
distfiles="https://github.com/JACoders/OpenJK/archive/${_gitrev}.tar.gz"
|
||||
checksum=efd2e3d96fe449819c4276dfea7ae7d591591ee0e651167844110e073f2edb3c
|
||||
|
||||
post_install() {
|
||||
vbin "${FILESDIR}/openjk"
|
||||
vbin "${FILESDIR}/openjk_sp"
|
||||
vbin "${FILESDIR}/openjkded"
|
||||
vbin "${FILESDIR}/openjo"
|
||||
|
||||
vinstall "${FILESDIR}/OpenJK.desktop" 644 usr/share/applications
|
||||
vinstall "${FILESDIR}/OpenJKMP.desktop" 644 usr/share/applications
|
||||
vinstall "${FILESDIR}/OpenJO.desktop" 644 usr/share/applications
|
||||
|
||||
for size in 16 32 64 128 1024; do
|
||||
vinstall shared/icons/${pkgname}_Icon_${size}.png 644 usr/share/icons/hicolor/${size}x${size}/apps/ OpenJK.png
|
||||
done
|
||||
|
||||
vdoc "${FILESDIR}/README.voidlinux"
|
||||
}
|
Loading…
Reference in a new issue