Date: Monday, April 25, 2022 @ 20:15:52 Author: arojas Revision: 1190095
962855F072C7A01846405864FCF3C8CB5CF9C8D4 key rebuild Modified: entityx/trunk/PKGBUILD ----------+ PKGBUILD | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-04-25 20:11:28 UTC (rev 1190094) +++ PKGBUILD 2022-04-25 20:15:52 UTC (rev 1190095) @@ -5,12 +5,12 @@ pkgname=entityx pkgver=1.3.0 -pkgrel=2 +pkgrel=3 pkgdesc='Fast, type-safe C++ Entity-Component system' arch=(x86_64) url='https://github.com/alecthomas/entityx' license=(MIT) -makedepends=(cmake git ninja) +makedepends=(cmake git ninja catch2) source=("git+$url#commit=6389b1f91598c99d85e56356fb57d9f4683071d8") # tag: 1.3.0 b2sums=(SKIP) @@ -17,6 +17,10 @@ prepare() { cd $pkgname git cherry-pick -n 015ae4ffb08d870d879b4ec5b71fdb261398b170 + +# Unbundle catch2 to fix build with glibc 2.35 + rm entityx/3rdparty/catch.hpp + ln -s /usr/include/catch2/catch.hpp entityx/3rdparty/ } build() {
