You need to give the path where you put the original game datas extracted fro PSX disc by args using the -d argument. openlara -d <datapath>
Search Criteria
Package Details: openlara-git r1430.b4bcd4a-3
Package Actions
Git Clone URL: | https://aur.archlinux.org/openlara-git.git (read-only, click to copy) |
---|---|
Package Base: | openlara-git |
Description: | Classic Tomb Raider open-source engine |
Upstream URL: | https://github.com/XProger/OpenLara |
Keywords: | 3d engine game |
Licenses: | unknown |
Conflicts: | openlara |
Provides: | openlara |
Submitter: | jle64 |
Maintainer: | Popolon |
Last Packager: | Popolon |
Votes: | 4 |
Popularity: | 0.000000 |
First Submitted: | 2017-04-24 14:33 (UTC) |
Last Updated: | 2025-08-30 20:16 (UTC) |
Dependencies (6)
- libgl (libglvnd-gitAUR, amdgpu-pro-oglp-legacyAUR, nvidia-340xx-utilsAUR, amdgpu-pro-oglpAUR, libglvnd)
- libpulse (pulseaudio-dummyAUR, libpulse-gitAUR)
- libx11 (libx11-gitAUR)
- sdl2AUR (sdl2-compat-gitAUR, sdl2-gitAUR, sdl2-compat)
- clang (llvm-gitAUR, clang-minimal-gitAUR, clang17-binAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
Required by (0)
Sources (1)
Latest Comments
Popolon commented on 2025-08-31 08:44 (UTC) (edited on 2025-08-31 08:48 (UTC) by Popolon)
flatiron commented on 2020-03-11 15:10 (UTC)
package broken:
Command 'systemd-run --pipe --wait --pty -p DynamicUser=yes -p CacheDirectory=pikaur -E HOME=/tmp -p WorkingDirectory=/var/cache/pikaur/build/openlara-git sh -c trap "exit 2" INT ; makepkg --force --skippgpcheck' failed to execute.Command 'systemd-run --pipe --wait --pty -p DynamicUser=yes -p CacheDirectory=pikaur -E HOME=/tmp -p WorkingDirectory=/var/cache/pikaur/build/openlara-git sh -c trap "exit 2" INT ; makepkg --force --skippgpcheck' failed to execute.
jle64 commented on 2019-10-13 23:14 (UTC)
@noabody: The package has no maintainer, maybe you could take it over to push your version of the PKGBUILD ?
noabody commented on 2019-10-13 06:20 (UTC) (edited on 2019-10-13 06:28 (UTC) by noabody)
I've had good luck with the SDL2 version while building on Ubuntu. PKGBUILD would look similar to this:
pkgname=openlara-git
_pkgname=openlara
pkgver=r1048.1b46961
pkgrel=1
pkgdesc="Classic Tomb Raider open-source engine"
arch=('any')
url="https://github.com/XProger/OpenLara"
license=('BSD-2-Clause')
makedepends=('git' 'clang')
depends=('libx11' 'libgl' 'libpulse' 'sdl2')
provides=($_pkgname)
conflicts=($_pkgname)
source=('openlara::git://github.com/XProger/OpenLara.git')
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$_pkgname"
printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/$_pkgname/src/platform/sdl2"
./build.sh
}
package() {
mkdir -p "$pkgdir/usr/bin" "$pkgdir"/usr/lib/openlara
install -m 755 "$srcdir/$_pkgname/src/platform/sdl2/OpenLara" "$pkgdir/usr/lib/openlara/OpenLara"
# use a wrapper as the program needs its CWD to be the directory containing the data files
echo -e '#!/bin/sh\nset -eu\ncd /usr/share/openlara\n/usr/lib/openlara/OpenLara $@' > "$pkgdir/usr/bin/openlara"
chmod 0755 "$pkgdir/usr/bin/openlara"
}
rafaelff commented on 2018-01-17 19:05 (UTC)
It fails in package() because the files LEVEL2.PSX, 05.ogg and 008.ogg are not provided by the upstream source.
Pinned Comments
Popolon commented on 2025-08-31 08:44 (UTC) (edited on 2025-08-31 08:48 (UTC) by Popolon)
You need to give the path where you put the original game datas extracted fro PSX disc by args using the -d argument. openlara -d <datapath>