summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Peukert2023-09-24 09:59:50 +0200
committerDaniel Peukert2023-09-24 09:59:50 +0200
commita9d902a542721190a801adf89e57a6880db830de (patch)
tree90f2bb65da849291dc84caec71309b7c44c2597b
parent3a143a0c48aa0732ed71b46a67afb4ba63447e6d (diff)
downloadaur-a9d902a542721190a801adf89e57a6880db830de.tar.gz
Switch back to system fmt for dolphin-emu-git
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index cf40a642caec..4069fd6072aa 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = dolphin-emu-git
pkgdesc = A Gamecube / Wii emulator
- pkgver = 5.0.r20059.g5e5887a378
+ pkgver = 5.0.r20135.gc67cd65b53
pkgrel = 1
url = https://dolphin-emu.org
arch = x86_64
@@ -14,6 +14,7 @@ pkgbase = dolphin-emu-git
depends = bluez-libs
depends = cubeb
depends = enet
+ depends = fmt
depends = hidapi
depends = libevdev
depends = libgl
diff --git a/PKGBUILD b/PKGBUILD
index 186e6dcee6ab..05900e374211 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ _mainpkgname="$_projectname-emu"
_noguipkgname="$_projectname-emu-nogui"
pkgbase="$_mainpkgname-git"
pkgname=("$pkgbase" "$_noguipkgname-git")
-pkgver='5.0.r20059.g5e5887a378'
+pkgver='5.0.r20135.gc67cd65b53'
pkgrel='1'
pkgdesc='A Gamecube / Wii emulator'
_pkgdescappend=' - git version'
@@ -15,7 +15,7 @@ arch=('x86_64' 'aarch64')
url="https://$_mainpkgname.org"
license=('GPL2')
depends=(
- 'alsa-lib' 'bluez-libs' 'cubeb' 'enet' 'hidapi' 'libevdev' 'libgl' 'libpulse'
+ 'alsa-lib' 'bluez-libs' 'cubeb' 'enet' 'fmt' 'hidapi' 'libevdev' 'libgl' 'libpulse'
'libspng' 'libx11' 'libxi' 'libxrandr' 'lzo' 'mbedtls2' 'minizip-ng' 'pugixml'
'qt6-base' 'qt6-svg' 'sfml' 'zlib-ng'
'libavcodec.so' 'libavformat.so' 'libavutil.so' 'libcurl.so' 'libminiupnpc.so'
@@ -75,7 +75,6 @@ build() {
# CMAKE_BUILD_TYPE - the dolphin-emu package in the repos uses 'None' for some reason, so we use it as well
# USE_SYSTEM_LIBS - we want to use system libs where possible
# USE_SYSTEM_LIBMGBA - the current version of mgba in the repos is not compatible with Dolphin
- # DUSE_SYSTEM_FMT - the current version of fmt in the repos is not compatible with Dolphin
cd "$srcdir/$_sourcedirectory/"
cmake -S '.' -B 'build/' -G Ninja \
-DCMAKE_BUILD_TYPE=None \
@@ -85,7 +84,6 @@ build() {
-DENABLE_AUTOUPDATE=OFF \
-DUSE_SYSTEM_LIBS=ON \
-DUSE_SYSTEM_LIBMGBA=OFF \
- -DUSE_SYSTEM_FMT=OFF \
-Wno-dev
cmake --build 'build/'
}