Remove unused line
This commit is contained in:
parent
6cdb0bad2a
commit
900c2245c3
2 changed files with 5 additions and 11 deletions
6
.SRCINFO
6
.SRCINFO
|
@ -1,7 +1,7 @@
|
|||
pkgbase = suyu-dev-qt6-git
|
||||
pkgdesc = suyu is the afterlife the world's most popular, open-source, Nintendo Switch emulator (dev branch with QT6)
|
||||
pkgver = r27269.b6ad090424
|
||||
pkgrel = 2
|
||||
pkgrel = 3
|
||||
url = https://git.suyu.dev/suyu/suyu
|
||||
install = suyu-dev-qt6-git.install
|
||||
arch = x86_64
|
||||
|
@ -18,11 +18,11 @@ pkgbase = suyu-dev-qt6-git
|
|||
makedepends = qt6-tools
|
||||
makedepends = shaderc
|
||||
makedepends = spirv-headers
|
||||
makedepends = vulkan-headers
|
||||
makedepends = vulkan-utility-libraries
|
||||
makedepends = catch2
|
||||
makedepends = rapidjson
|
||||
makedepends = mbedtls
|
||||
makedepends = vcpkg
|
||||
depends = brotli
|
||||
depends = enet
|
||||
depends = llvm-libs
|
||||
|
@ -60,13 +60,11 @@ pkgbase = suyu-dev-qt6-git
|
|||
source = git+https://git.suyu.dev/suyu/discord-rpc.git
|
||||
source = git+https://github.com/KhronosGroup/Vulkan-Headers.git
|
||||
source = git+https://git.suyu.dev/suyu/sirit.git
|
||||
source = git+https://git.suyu.dev/suyu/mbedtls.git
|
||||
source = git+https://github.com/herumi/xbyak.git
|
||||
source = git+https://github.com/xiph/opus.git
|
||||
source = git+https://github.com/libsdl-org/SDL.git
|
||||
source = git+https://github.com/yhirose/cpp-httplib.git
|
||||
source = ffmpeg::git+https://github.com/FFmpeg/FFmpeg.git
|
||||
source = git+https://github.com/microsoft/vcpkg.git
|
||||
source = git+https://github.com/arun11299/cpp-jwt.git
|
||||
source = git+https://github.com/bylaws/libadrenotools.git
|
||||
source = git+https://github.com/lat9nq/tzdb_to_nx.git
|
||||
|
|
10
PKGBUILD
10
PKGBUILD
|
@ -5,7 +5,7 @@ _pkgname=suyu
|
|||
_branch=dev
|
||||
pkgname=suyu-dev-qt6-git
|
||||
pkgver=r27269.b6ad090424
|
||||
pkgrel=2
|
||||
pkgrel=3
|
||||
pkgdesc="suyu is the afterlife the world's most popular, open-source, Nintendo Switch emulator (dev branch with QT6)"
|
||||
arch=(x86_64)
|
||||
url=https://git.suyu.dev/suyu/suyu
|
||||
|
@ -52,11 +52,11 @@ makedepends=(
|
|||
qt6-tools
|
||||
shaderc
|
||||
spirv-headers
|
||||
vulkan-headers
|
||||
vulkan-utility-libraries
|
||||
catch2
|
||||
rapidjson
|
||||
mbedtls
|
||||
vcpkg
|
||||
)
|
||||
options=(!debug lto)
|
||||
source=(
|
||||
|
@ -68,13 +68,11 @@ source=(
|
|||
git+https://git.suyu.dev/suyu/discord-rpc.git
|
||||
git+https://github.com/KhronosGroup/Vulkan-Headers.git
|
||||
git+https://git.suyu.dev/suyu/sirit.git
|
||||
git+https://git.suyu.dev/suyu/mbedtls.git
|
||||
git+https://github.com/herumi/xbyak.git
|
||||
git+https://github.com/xiph/opus.git
|
||||
git+https://github.com/libsdl-org/SDL.git
|
||||
git+https://github.com/yhirose/cpp-httplib.git
|
||||
ffmpeg::git+https://github.com/FFmpeg/FFmpeg.git
|
||||
git+https://github.com/microsoft/vcpkg.git
|
||||
git+https://github.com/arun11299/cpp-jwt.git
|
||||
git+https://github.com/bylaws/libadrenotools.git
|
||||
git+https://github.com/lat9nq/tzdb_to_nx.git
|
||||
|
@ -127,7 +125,7 @@ pkgver() {
|
|||
prepare() {
|
||||
cd "$srcdir/$_pkgname"
|
||||
git submodule init
|
||||
for submodule in {enet,cubeb,dynarmic,libusb,discord-rpc,Vulkan-Headers,sirit,mbedtls,xbyak,opus,SDL,cpp-httplib,ffmpeg,vcpkg,cpp-jwt,libadrenotools,tzdb_to_nx,VulkanMemoryAllocator,breakpad,simpleini,oaknut,Vulkan-Utility-Libraries};
|
||||
for submodule in {enet,cubeb,dynarmic,libusb,discord-rpc,Vulkan-Headers,sirit,xbyak,opus,SDL,cpp-httplib,ffmpeg,cpp-jwt,libadrenotools,tzdb_to_nx,VulkanMemoryAllocator,breakpad,simpleini,oaknut,Vulkan-Utility-Libraries};
|
||||
do
|
||||
git config submodule.$submodule.url "${srcdir}"/$submodule
|
||||
done
|
||||
|
@ -199,8 +197,6 @@ build() {
|
|||
package() {
|
||||
DESTDIR="${pkgdir}" cmake --install build
|
||||
install -Dm644 ${_pkgname}/dist/72-suyu-input.rules -t "${pkgdir}"/usr/lib/udev/rules.d/
|
||||
|
||||
cd "${pkgdir}"/usr/share/applications
|
||||
}
|
||||
|
||||
# vim: ts=2 sw=2 et
|
||||
|
|
Reference in a new issue