mirror of
https://git.suyu.dev/suyu/Arch_PKGBUILD
synced 2024-11-21 14:29:13 -07:00
upgpkg: master-1
This commit is contained in:
parent
2272837db9
commit
8f3919b367
2 changed files with 14 additions and 15 deletions
14
.SRCINFO
14
.SRCINFO
|
@ -1,11 +1,12 @@
|
|||
pkgbase = suyu-git
|
||||
pkgdesc = suyu is the afterlife the world's most popular, open-source, Nintendo Switch emulator (master branch)
|
||||
pkgver = r27087.c15523798
|
||||
pkgver = r27048.f7c0931e3c
|
||||
pkgrel = 1
|
||||
url = https://gitlab.com/suyu-emu/suyu
|
||||
install = suyu-git.install
|
||||
arch = x86_64
|
||||
license = GPL3
|
||||
license = GPL-3.0-or-later
|
||||
makedepends = brotli
|
||||
makedepends = boost
|
||||
makedepends = clang
|
||||
makedepends = cmake
|
||||
|
@ -19,10 +20,11 @@ pkgbase = suyu-git
|
|||
makedepends = shaderc
|
||||
makedepends = spirv-headers
|
||||
makedepends = vulkan-headers
|
||||
makedepends = vulkan-utility-libraries
|
||||
makedepends = catch2
|
||||
makedepends = rapidjson
|
||||
depends = brotli
|
||||
depends = enet
|
||||
depends = llvm-libs
|
||||
depends = gcc-libs
|
||||
depends = glibc
|
||||
depends = hicolor-icon-theme
|
||||
|
@ -34,7 +36,6 @@ pkgbase = suyu-git
|
|||
depends = libopus.so
|
||||
depends = libspeexdsp.so
|
||||
depends = libssl.so
|
||||
depends = libswscale.so
|
||||
depends = libusb-1.0.so
|
||||
depends = libva.so
|
||||
depends = libzstd.so
|
||||
|
@ -43,13 +44,8 @@ pkgbase = suyu-git
|
|||
depends = qt5-multimedia
|
||||
depends = qt5-webengine
|
||||
depends = sdl2
|
||||
depends = vulkan-utility-libraries
|
||||
depends = zlib
|
||||
provides = suyu
|
||||
conflicts = suyu-dev-git
|
||||
conflicts = yuzu
|
||||
conflicts = yuzu-early-access-appimage
|
||||
conflicts = yuzu-early-access-git
|
||||
options = !debug
|
||||
options = lto
|
||||
source = git+https://gitlab.com/suyu-emu/suyu.git#branch=master
|
||||
|
|
15
PKGBUILD
15
PKGBUILD
|
@ -3,18 +3,17 @@
|
|||
_pkgname=suyu
|
||||
_branch=master
|
||||
pkgname=suyu-git
|
||||
pkgver=r27087.c15523798
|
||||
pkgver=r27048.f7c0931e3c
|
||||
pkgrel=1
|
||||
pkgdesc="suyu is the afterlife the world's most popular, open-source, Nintendo Switch emulator (master branch)"
|
||||
arch=(x86_64)
|
||||
url=https://gitlab.com/suyu-emu/suyu
|
||||
license=(GPL3)
|
||||
license=(GPL-3.0-or-later)
|
||||
provides=('suyu')
|
||||
conflicts=(suyu-dev-git yuzu yuzu-early-access-appimage yuzu-early-access-git)
|
||||
install=$pkgname.install
|
||||
depends=(
|
||||
brotli
|
||||
enet
|
||||
llvm-libs
|
||||
gcc-libs
|
||||
glibc
|
||||
hicolor-icon-theme
|
||||
|
@ -26,7 +25,6 @@ depends=(
|
|||
libopus.so
|
||||
libspeexdsp.so
|
||||
libssl.so
|
||||
libswscale.so
|
||||
libusb-1.0.so
|
||||
libva.so
|
||||
libzstd.so
|
||||
|
@ -35,10 +33,10 @@ depends=(
|
|||
qt5-multimedia
|
||||
qt5-webengine
|
||||
sdl2
|
||||
vulkan-utility-libraries
|
||||
zlib
|
||||
)
|
||||
makedepends=(
|
||||
brotli
|
||||
boost
|
||||
clang
|
||||
cmake
|
||||
|
@ -52,6 +50,7 @@ makedepends=(
|
|||
shaderc
|
||||
spirv-headers
|
||||
vulkan-headers
|
||||
vulkan-utility-libraries
|
||||
catch2
|
||||
rapidjson
|
||||
)
|
||||
|
@ -127,6 +126,9 @@ prepare() {
|
|||
}
|
||||
|
||||
build() {
|
||||
if [[ $CXXFLAGS == *"-flto"* ]]; then
|
||||
flags+=("-DSUYU_ENABLE_LTO=ON")
|
||||
fi
|
||||
export CXXFLAGS+=' -Wno-switch'
|
||||
cmake -S suyu -B build -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=None \
|
||||
|
@ -155,6 +157,7 @@ build() {
|
|||
-DSUYU_USE_QT_MULTIMEDIA=ON \
|
||||
-DSUYU_USE_QT_WEB_ENGINE=ON \
|
||||
-DSUYU_TESTS=OFF \
|
||||
"${flags[@]}" \
|
||||
-Wno-dev
|
||||
cmake --build build
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue