ppsspp-git 1.3.r229.47ee86ebc-1
armips also has a submodule now
This commit is contained in:
parent
3da534cf21
commit
e43a3fd50b
8
.SRCINFO
8
.SRCINFO
|
@ -1,8 +1,8 @@
|
||||||
# Generated by mksrcinfo v8
|
# Generated by mksrcinfo v8
|
||||||
# Sun Dec 11 21:42:14 UTC 2016
|
# Thu Dec 22 09:46:18 UTC 2016
|
||||||
pkgbase = ppsspp-git
|
pkgbase = ppsspp-git
|
||||||
pkgdesc = A PSP emulator written in C++
|
pkgdesc = A PSP emulator written in C++
|
||||||
pkgver = 1.3.r191.aa964ea
|
pkgver = 1.3.r229.47ee86ebc
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = http://www.ppsspp.org/
|
url = http://www.ppsspp.org/
|
||||||
arch = i686
|
arch = i686
|
||||||
|
@ -27,13 +27,15 @@ pkgbase = ppsspp-git
|
||||||
depends = libswscale.so
|
depends = libswscale.so
|
||||||
source = git+https://github.com/hrydgard/ppsspp.git
|
source = git+https://github.com/hrydgard/ppsspp.git
|
||||||
source = git+https://github.com/hrydgard/ppsspp-lang.git
|
source = git+https://github.com/hrydgard/ppsspp-lang.git
|
||||||
source = git+https://github.com/hrydgard/ppsspp-glslang.git
|
source = ppsspp-glslang::git+https://github.com/hrydgard/glslang.git
|
||||||
source = ppsspp-armips::git+https://github.com/Kingcom/armips.git
|
source = ppsspp-armips::git+https://github.com/Kingcom/armips.git
|
||||||
|
source = armips-tinyformat::git+https://github.com/Kingcom/tinyformat.git
|
||||||
source = ppsspp.desktop
|
source = ppsspp.desktop
|
||||||
sha256sums = SKIP
|
sha256sums = SKIP
|
||||||
sha256sums = SKIP
|
sha256sums = SKIP
|
||||||
sha256sums = SKIP
|
sha256sums = SKIP
|
||||||
sha256sums = SKIP
|
sha256sums = SKIP
|
||||||
|
sha256sums = SKIP
|
||||||
sha256sums = 1c332702d0aeced07df7e12ba8530bc3f19a52bc76c355f6c84c141becfd46d8
|
sha256sums = 1c332702d0aeced07df7e12ba8530bc3f19a52bc76c355f6c84c141becfd46d8
|
||||||
|
|
||||||
pkgname = ppsspp-git
|
pkgname = ppsspp-git
|
||||||
|
|
12
PKGBUILD
12
PKGBUILD
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
pkgbase=ppsspp-git
|
pkgbase=ppsspp-git
|
||||||
pkgname=('ppsspp-git' 'ppsspp-qt-git')
|
pkgname=('ppsspp-git' 'ppsspp-qt-git')
|
||||||
pkgver=1.3.r191.aa964ea
|
pkgver=1.3.r229.47ee86ebc
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc='A PSP emulator written in C++'
|
pkgdesc='A PSP emulator written in C++'
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
|
@ -19,13 +19,15 @@ depends=('gcc-libs' 'glew' 'glibc' 'libgl' 'libzip' 'sdl2' 'zlib'
|
||||||
makedepends=('cmake' 'git' 'glu' 'qt5-multimedia' 'qt5-tools')
|
makedepends=('cmake' 'git' 'glu' 'qt5-multimedia' 'qt5-tools')
|
||||||
source=('git+https://github.com/hrydgard/ppsspp.git'
|
source=('git+https://github.com/hrydgard/ppsspp.git'
|
||||||
'git+https://github.com/hrydgard/ppsspp-lang.git'
|
'git+https://github.com/hrydgard/ppsspp-lang.git'
|
||||||
'git+https://github.com/hrydgard/ppsspp-glslang.git'
|
'ppsspp-glslang::git+https://github.com/hrydgard/glslang.git'
|
||||||
'ppsspp-armips::git+https://github.com/Kingcom/armips.git'
|
'ppsspp-armips::git+https://github.com/Kingcom/armips.git'
|
||||||
|
'armips-tinyformat::git+https://github.com/Kingcom/tinyformat.git'
|
||||||
'ppsspp.desktop')
|
'ppsspp.desktop')
|
||||||
sha256sums=('SKIP'
|
sha256sums=('SKIP'
|
||||||
'SKIP'
|
'SKIP'
|
||||||
'SKIP'
|
'SKIP'
|
||||||
'SKIP'
|
'SKIP'
|
||||||
|
'SKIP'
|
||||||
'1c332702d0aeced07df7e12ba8530bc3f19a52bc76c355f6c84c141becfd46d8')
|
'1c332702d0aeced07df7e12ba8530bc3f19a52bc76c355f6c84c141becfd46d8')
|
||||||
|
|
||||||
pkgver() {
|
pkgver() {
|
||||||
|
@ -43,6 +45,12 @@ prepare() {
|
||||||
git submodule update ${submodule}
|
git submodule update ${submodule}
|
||||||
done
|
done
|
||||||
|
|
||||||
|
pushd ext/armips
|
||||||
|
git submodule init ext/tinyformat
|
||||||
|
git config submodule.ext/tinyformat.url ../../../armips-tinyformat
|
||||||
|
git submodule update ext/tinyformat
|
||||||
|
popd
|
||||||
|
|
||||||
for ui in sdl qt; do
|
for ui in sdl qt; do
|
||||||
if [[ -d build-$ui ]]; then
|
if [[ -d build-$ui ]]; then
|
||||||
rm -rf build-$ui
|
rm -rf build-$ui
|
||||||
|
|
Loading…
Reference in New Issue
Block a user