summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Bezies2022-02-17 17:52:32 +0100
committerFrederic Bezies2022-02-17 17:52:32 +0100
commit82c1001b385c76ec99b312f2fa4febd0ab60cfa0 (patch)
tree16390578ec935c406334ed73a4987c91551df6d9
parentd04399f81d797c31b2c9a7934052af2bcba1d4ef (diff)
downloadaur-82c1001b385c76ec99b312f2fa4febd0ab60cfa0.tar.gz
disabling video until ffmpeg 4.4 is correctly detected - see bug https://sourceforge.net/p/vice-emu/bugs/1704/
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d590992638d9..d1fe15958af4 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = vice-svn
pkgdesc = The Versatile Commodore Emulator 8-bits (PET/C64/C128/Plus4/Vic20) - Development version
- pkgver = r41743
+ pkgver = r41774
pkgrel = 1
url = http://vice-emu.sourceforge.net
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index 05ff0f1bd77d..2a5d5db214ca 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: Benjamin Hodgetts <ben@xnode.org>
pkgname=vice-svn
-pkgver=r41743
+pkgver=r41774
pkgrel=1
pkgdesc="The Versatile Commodore Emulator 8-bits (PET/C64/C128/Plus4/Vic20) - Development version"
arch=('i686' 'x86_64')
@@ -64,7 +64,9 @@ pkgver() {
build() {
cd "${pkgname}/vice"
./autogen.sh
- ./configure --prefix=/usr --libdir=/usr/lib --enable-external-ffmpeg
+ ./configure --prefix=/usr --libdir=/usr/lib
+ # Deactivating ffmpeg until ffmpeg4.4 is well detected
+ #--enable-external-ffmpeg
make
}