summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Bezies2022-02-17 17:57:51 +0100
committerFrederic Bezies2022-02-17 17:57:51 +0100
commite32aa0bb6507c6f06a015a91db871156296207f1 (patch)
treea6d7780e348b7b2148544055201c0094a75203dc
parent541f9429d2c4d6f71ecc8ad35a805ea3313163d2 (diff)
downloadaur-e32aa0bb6507c6f06a015a91db871156296207f1.tar.gz
remove ffmpeg encoding until ffmpeg 5.x is supported. Cf bug https://github.com/joncampbell123/dosbox-x/issues/3283
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9d619e5d66b7..b8bf150a0a0a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = dosbox-x-sdl2-git
pkgdesc = x86 emulator with builtin DOS, with patches with more features - sdl2 git version
pkgver = 0.83.22.r22.g899f7e620
- pkgrel = 1
+ pkgrel = 2
epoch = 1
url = https://dosbox-x.com/
install = dosbox-x.install
diff --git a/PKGBUILD b/PKGBUILD
index c43255200887..20423a1c4b14 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=dosbox-x-sdl2-git
pkgver=0.83.22.r22.g899f7e620
-pkgrel=1
+pkgrel=2
epoch=1
pkgdesc="x86 emulator with builtin DOS, with patches with more features - sdl2 git version"
arch=(i686 x86_64)
@@ -27,7 +27,9 @@ build() {
export CFLAGS=${CFLAGS/-Werror=format-security/}
export CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
./autogen.sh
- ./configure --enable-core-inline --enable-debug --enable-avcodec --prefix=/usr --enable-sdl2
+ # until bug https://github.com/joncampbell123/dosbox-x/issues/3283
+ # is fixed, disabling avcodec support
+ ./configure --enable-core-inline --enable-debug --disable-avcodec --prefix=/usr --enable-sdl2
make -j$(nproc)
}