summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxime Gauduin2018-10-30 14:00:48 +0100
committerMaxime Gauduin2018-10-30 14:00:48 +0100
commitd127c27c22ef021325bca89c8450006387a67e59 (patch)
tree8896057c18414401e8fb5273e11cd8e32d6a9972
parent1f7798dadae4afcc2d61ed3071c99087867513ea (diff)
downloadaur-d127c27c22ef021325bca89c8450006387a67e59.tar.gz
Update libretro-ppsspp-git
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD22
2 files changed, 21 insertions, 15 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2d9fec2810d6..9e27bff8a6ef 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,10 @@
# Generated by mksrcinfo v8
-# Tue Aug 7 02:19:20 UTC 2018
+# Tue Oct 30 13:00:47 UTC 2018
pkgbase = libretro-ppsspp-git
pkgdesc = Sony PlayStation Portable core
- pkgver = r24646.6fe7a9746
+ pkgver = r24915.6dd048f0c
pkgrel = 1
- url = https://github.com/libretro/libretro-ppsspp
+ url = https://github.com/libretro/ppsspp
arch = x86_64
groups = libretro-unstable
license = GPL2
@@ -22,12 +22,16 @@ pkgbase = libretro-ppsspp-git
provides = libretro-ppsspp
conflicts = libretro-ppsspp
source = libretro-ppsspp::git+https://github.com/libretro/ppsspp.git
+ source = git+https://github.com/Kingcom/armips.git
+ source = git+https://github.com/discordapp/discord-rpc.git
source = ppsspp-ffmpeg::git+https://github.com/hrydgard/ppsspp-ffmpeg.git
source = ppsspp-glslang::git+https://github.com/hrydgard/glslang.git
source = git+https://github.com/hrydgard/ppsspp-lang.git
- source = git+https://github.com/Kingcom/armips.git
- source = armips-tinyformat::git+https://github.com/Kingcom/tinyformat.git
+ source = git+https://github.com/Tencent/rapidjson.git
source = git+https://github.com/KhronosGroup/SPIRV-Cross.git
+ source = armips-tinyformat::git+https://github.com/Kingcom/tinyformat.git
+ sha256sums = SKIP
+ sha256sums = SKIP
sha256sums = SKIP
sha256sums = SKIP
sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 4af8d024f1e8..1ffcae8ac8f9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,11 +3,11 @@
# Contributor: Duck Hunt <vaporeon@tfwno.gf>
pkgname=libretro-ppsspp-git
-pkgver=r24646.6fe7a9746
+pkgver=r24915.6dd048f0c
pkgrel=1
pkgdesc='Sony PlayStation Portable core'
arch=('x86_64')
-url='https://github.com/libretro/libretro-ppsspp'
+url='https://github.com/libretro/ppsspp'
license=('GPL2')
groups=('libretro-unstable')
depends=('gcc-libs' 'glew' 'glibc' 'libgl' 'libretro-core-info' 'sdl2' 'zlib')
@@ -15,18 +15,22 @@ makedepends=('cmake' 'git' 'glu' 'libglvnd')
provides=('libretro-ppsspp')
conflicts=('libretro-ppsspp')
source=('libretro-ppsspp::git+https://github.com/libretro/ppsspp.git'
+ 'git+https://github.com/Kingcom/armips.git'
+ 'git+https://github.com/discordapp/discord-rpc.git'
'ppsspp-ffmpeg::git+https://github.com/hrydgard/ppsspp-ffmpeg.git'
'ppsspp-glslang::git+https://github.com/hrydgard/glslang.git'
'git+https://github.com/hrydgard/ppsspp-lang.git'
- 'git+https://github.com/Kingcom/armips.git'
- 'armips-tinyformat::git+https://github.com/Kingcom/tinyformat.git'
- 'git+https://github.com/KhronosGroup/SPIRV-Cross.git')
+ 'git+https://github.com/Tencent/rapidjson.git'
+ 'git+https://github.com/KhronosGroup/SPIRV-Cross.git'
+ 'armips-tinyformat::git+https://github.com/Kingcom/tinyformat.git')
sha256sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
+ 'SKIP'
+ 'SKIP'
'SKIP')
pkgver() {
@@ -48,7 +52,7 @@ prepare() {
git config submodule.${submodule}.url ../ppsspp-${submodule#*/}
git submodule update ${submodule}
done
- for submodule in ext/{SPIRV-Cross,armips}; do
+ for submodule in ext/{armips,discord-rpc,rapidjson,SPIRV-Cross}; do
git submodule init ${submodule}
git config submodule.${submodule}.url ../${submodule#*/}
git submodule update ${submodule}
@@ -76,10 +80,8 @@ build() {
}
package() {
- cd build
-
- install -Dm 644 lib/ppsspp_libretro.so -t "${pkgdir}"/usr/lib/libretro/
- install -Dm 644 ../libretro-ppsspp/LICENSE.TXT -t "${pkgdir}"/usr/share/licenses/libretro-ppsspp-git/
+ install -Dm 644 build/lib/ppsspp_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+ install -Dm 644 libretro-ppsspp/LICENSE.TXT -t "${pkgdir}"/usr/share/licenses/libretro-ppsspp-git/
}
# vim: ts=2 sw=2 et: