From 37b5387f6b47a64a0c74766798a162d97aef2c83 Mon Sep 17 00:00:00 2001 From: lilac Date: Fri, 4 Nov 2022 12:29:50 +0800 Subject: [PATCH] [lilac] updated to 3081-1 --- .SRCINFO | 7 ++++--- PKGBUILD | 9 ++++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4d09c01..a90a0f3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,11 +1,12 @@ pkgbase = yuzu-early-access pkgdesc = An experimental open-source Nintendo Switch emulator/debugger (early access version) - pkgver = 3073 + pkgver = 3081 pkgrel = 1 url = https://yuzu-emu.org/ arch = i686 arch = x86_64 license = GPL2 + makedepends = llvm makedepends = git makedepends = glslang makedepends = cmake @@ -40,9 +41,9 @@ pkgbase = yuzu-early-access optdepends = qt5-wayland: for Wayland support provides = yuzu conflicts = yuzu - source = https://github.com/pineappleEA/pineapple-src/archive/EA-3073.tar.gz + source = https://github.com/pineappleEA/pineapple-src/archive/EA-3081.tar.gz source = https://raw.githubusercontent.com/pineappleEA/Pineapple-Linux/master/yuzu.xml - sha256sums = 4f8baca093fb67ee03cc0426438a11c0380a9c87cce503c48a25e2c414122907 + sha256sums = d77cddb64017f60e348a65d4045a8bfd1fd32a9ff749dd1f3bf10debe3b63ffd sha256sums = e76ab2b3566d8135930e570ede5bed3da8f131270b60db818e453d248880bdf2 pkgname = yuzu-early-access diff --git a/PKGBUILD b/PKGBUILD index 1163f60..2c462bf 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,20 +2,20 @@ _pkgname=yuzu pkgname=$_pkgname-early-access -pkgver=3073 +pkgver=3081 pkgrel=1 pkgdesc="An experimental open-source Nintendo Switch emulator/debugger (early access version)" arch=('i686' 'x86_64') url="https://yuzu-emu.org/" license=('GPL2') depends=('boost-libs' 'shared-mime-info' 'hicolor-icon-theme' 'sdl2' 'qt5-base' 'qt5-multimedia' 'qt5-webengine' 'libxkbcommon-x11' 'ffmpeg' 'fmt' 'libzip' 'opus' 'libfdk-aac' 'lz4' 'mbedtls' 'openssl' 'zstd') -makedepends=('git' 'glslang' 'cmake' 'ninja' 'graphviz' 'doxygen' 'clang' 'boost' 'catch2' 'nlohmann-json' 'rapidjson' 'qt5-tools' 'desktop-file-utils' 'robin-map') +makedepends=('llvm' 'git' 'glslang' 'cmake' 'ninja' 'graphviz' 'doxygen' 'clang' 'boost' 'catch2' 'nlohmann-json' 'rapidjson' 'qt5-tools' 'desktop-file-utils' 'robin-map') optdepends=('qt5-wayland: for Wayland support') provides=('yuzu') conflicts=('yuzu') source=("https://github.com/pineappleEA/pineapple-src/archive/EA-${pkgver}.tar.gz" "https://raw.githubusercontent.com/pineappleEA/Pineapple-Linux/master/yuzu.xml") -sha256sums=('4f8baca093fb67ee03cc0426438a11c0380a9c87cce503c48a25e2c414122907' +sha256sums=('d77cddb64017f60e348a65d4045a8bfd1fd32a9ff749dd1f3bf10debe3b63ffd' 'e76ab2b3566d8135930e570ede5bed3da8f131270b60db818e453d248880bdf2') prepare() { @@ -39,6 +39,9 @@ build() { cmake .. -GNinja \ -DCMAKE_CXX_COMPILER=clang++ \ -DCMAKE_C_COMPILER=clang \ + -DCMAKE_C_FLAGS="$CFLAGS -flto=thin" \ + -DCMAKE_CXX_FLAGS="$CXXFLAGS -flto=thin" \ + -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON \ -DTITLE_BAR_FORMAT_IDLE="yuzu Early Access $pkgver" \ -DTITLE_BAR_FORMAT_RUNNING="yuzu Early Access $pkgver | {3}" \ -DCMAKE_INSTALL_PREFIX=/usr \