Search Criteria
Package Details: opengothic 1.0.2324-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/opengothic.git (read-only, click to copy) |
---|---|
Package Base: | opengothic |
Description: | Open source remake of Gothic 2: Night of the raven |
Upstream URL: | https://github.com/Try/OpenGothic |
Licenses: | MIT |
Submitter: | CReimer |
Maintainer: | CReimer |
Last Packager: | CReimer |
Votes: | 5 |
Popularity: | 0.007103 |
First Submitted: | 2021-02-13 20:04 (UTC) |
Last Updated: | 2023-08-22 17:45 (UTC) |
Dependencies (10)
- alsa-lib
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc11-libsAUR, gcc-libs-snapshotAUR)
- libx11 (libx11-gitAUR)
- libxcursor
- vulkan-icd-loader (vulkan-icd-loader-gitAUR)
- cmake (cmake-gitAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- glslang (glslang-gitAUR) (make)
- libglvnd (libglvnd-gitAUR) (make)
- vulkan-headers (vulkan-headers-gitAUR) (make)
Required by (0)
Sources (9)
- git+https://github.com/bulletphysics/bullet3.git
- git+https://github.com/doctest/doctest.git
- git+https://github.com/g-truc/glm.git
- git+https://github.com/GothicKit/phoenix.git
- git+https://github.com/lmichaelis/phoenix-libsquish.git
- git+https://github.com/mandreyel/mio.git
- git+https://github.com/schellingb/TinySoundFont.git
- git+https://github.com/Try/OpenGothic#commit=c8cd3d68cb0b16159118a537008932ec82884496
- git+https://github.com/Try/Tempest.git
Latest Comments
« First ‹ Previous 1 2
jimsey-pickles commented on 2022-07-04 20:23 (UTC)
I noticed that the physfs library you include makes it so that the physfs packages from the regular community repo can't be installed. I get the error messages:
physfs: /usr/include/physfs.h exists in filesystem (owned by opengothic) physfs: /usr/lib/libphysfs.so exists in filesystem (owned by opengothic) physfs: /usr/lib/libphysfs.so.1 exists in filesystem (owned by opengothic) physfs: /usr/lib/pkgconfig/physfs.pc exists in filesystem (owned by opengothic)
I also think that the package bullet can't be installed as a dependency for other software for the same reason.
So is it possible that you either use the regular physfs/bullet packages for opengothic or install opengothics version somewhere else?
CReimer commented on 2021-02-14 20:09 (UTC)
Thank you. I wasn't aware of that part of the VCS package guidelines and I also added the missing makedepends
yochananmarqos commented on 2021-02-14 19:26 (UTC)
Please follow VCS package guidelines for submodules.
This is missing
glslang
andlibglvnd
from makedepends():See Cmake package guidelines,
-DCMAKE_BUILD_TYPE='None'
should normally be used.Use
-DOpenGL_GL_PREFERENCE='GLVND'
:This not only conflicts with
bullet
, but alsolibsquish
andphysfs
. To avoid that, they can be added as dependencies and conflicting files removed.Using
-DBUILD_SHARED_LIBS='OFF'
doesn't make any difference, but-DPHYSFS_BUILD_SHARED='OFF'
does.There are no empty directories, no need to disable any default options.
Improved PKGBUILD
« First ‹ Previous 1 2