diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-10-28 13:23:08 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-10-28 13:23:08 -0700 |
commit | 24875dc4fb046c9d6f1d420e5bdd5c628872f26f (patch) | |
tree | 95e3b512730db7dba783c5cfd37f01a60088c746 /PKGBUILD | |
parent | Clean up PKGBUILD (diff) | |
download | fceux-24875dc4fb046c9d6f1d420e5bdd5c628872f26f.tar.xz |
Fix the cmake options so it actually builds.
Disable x265 patch until artix rolls out x265 4.0
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -26,7 +26,7 @@ b2sums=('4d7779af0afc5fa12d3734d282f92b105757d204c69091b4e3574e4ced6179c5e202b75 prepare() { cd ${pkgname}-${pkgver} - patch -p1 -i ../x265-4.0.patch # Fix build with x265 4.0 + #patch -p1 -i ../x265-4.0.patch # Fix build with x265 4.0 } build() { @@ -38,9 +38,8 @@ build() { cmake \ -B build \ - -D CMAKE_INSTALL_PREFIX=/usr \ - -G Ninja \ - -S fceux + -DCMAKE_INSTALL_PREFIX=/usr \ + -G Ninja ninja -C build "$MAKEFLAGS" } |