Advertisement
Goodevil95

Untitled

Aug 25th, 2023
1,654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.71 KB | None | 0 0
  1. diff --git a/PKGBUILD b/PKGBUILD
  2. index bbb12b4..15b59f2 100644
  3. --- a/PKGBUILD
  4. +++ b/PKGBUILD
  5. @@ -11,10 +11,10 @@ pkgname=(
  6.    ppsspp-git
  7.    ppsspp-assets-git
  8.  )
  9. -pkgver=1.15.4.r562.04932d98a7
  10. +pkgver=1.15.4.r1217.564c4b38bd
  11.  pkgrel=1
  12.  pkgdesc='A PSP emulator written in C++'
  13. -arch=(x86_64)
  14. +arch=(x86_64 aarch64)
  15.  url=https://www.ppsspp.org/
  16.  license=(GPL2)
  17.  makedepends=(
  18. @@ -97,7 +97,14 @@ build() {
  19.    export CXX=clang++
  20.    # Rebuild ffmpeg locally
  21.    pushd ppsspp/ffmpeg
  22. -  ./linux_x86-64.sh
  23. +  case $CARCH in
  24. +    x86_64)
  25. +      ./linux_x86-64.sh
  26. +      ;;
  27. +    aarch64)
  28. +      ./linux_arm64_native.sh
  29. +      ;;
  30. +  esac
  31.    popd
  32.    cmake -S ppsspp -B build-sdl -G Ninja \
  33.      -Wno-dev \
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement