summaryrefslogtreecommitdiff
path: root/PKGBUILD
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2024-10-28 13:23:08 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2024-10-28 13:23:08 -0700
commit24875dc4fb046c9d6f1d420e5bdd5c628872f26f (patch)
tree95e3b512730db7dba783c5cfd37f01a60088c746 /PKGBUILD
parentClean up PKGBUILD (diff)
downloadfceux-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--PKGBUILD7
1 files changed, 3 insertions, 4 deletions
diff --git a/PKGBUILD b/PKGBUILD
index b8d3e05..1f73293 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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"
}