[arch-commits] Commit in libretro-play/repos/community-x86_64 (PKGBUILD PKGBUILD)
Maxime Gauduin
alucryd at gemini.archlinux.org
Fri Jan 14 16:27:45 UTC 2022
Date: Friday, January 14, 2022 @ 16:27:45
Author: alucryd
Revision: 1103345
archrelease: copy trunk to community-x86_64
Added:
libretro-play/repos/community-x86_64/PKGBUILD
(from rev 1103344, libretro-play/trunk/PKGBUILD)
Deleted:
libretro-play/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 183 +++++++++++++++++++++++++++++--------------------------------
1 file changed, 88 insertions(+), 95 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-01-14 16:27:40 UTC (rev 1103344)
+++ PKGBUILD 2022-01-14 16:27:45 UTC (rev 1103345)
@@ -1,95 +0,0 @@
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-
-pkgname=libretro-play
-pkgver=6899
-pkgrel=1
-pkgdesc='Sony PlayStation 2 core'
-arch=(x86_64)
-url=https://github.com/jpd002/Play-
-license=(MIT)
-groups=(libretro)
-depends=(
- bzip2
- glew
- glibc
- icu
- libgl
- libretro-core-info
- zlib
-)
-makedepends=(
- cmake
- git
- libglvnd
-)
-_commit=bc39dc0ba11efce7a1639a1fed38f22d6367bfef
-source=(
- libretro-play::git+https://github.com/jpd002/Play-.git#commit=${_commit}
- play-CodeGen::git+https://github.com/jpd002/Play--CodeGen.git
- play-Dependencies::git+https://github.com/jpd002/Play-Dependencies.git
- play-Framework::git+https://github.com/jpd002/Play--Framework.git
- play-libchdr::git+https://github.com/jpd002/libchdr.git
- play-Nuanceur::git+https://github.com/jpd002/Nuanceur.git
- git+https://github.com/SDWebImage/SDWebImage.git
- play-boost-cmake::git+https://github.com/jpd002/boost-cmake.git
- git+https://github.com/gulrak/filesystem.git
-)
-sha256sums=(
- SKIP
- SKIP
- SKIP
- SKIP
- SKIP
- SKIP
- SKIP
- SKIP
- SKIP
-)
-
-pkgver() {
- cd libretro-play
-
- git rev-list --count HEAD
-}
-
-prepare() {
- cd libretro-play
-
- for submodule in deps/{CodeGen,Dependencies,Framework,Nuanceur,libchdr}; do
- git submodule init ${submodule}
- git config submodule.${submodule}.url ../play-${submodule#*/}
- git submodule update ${submodule}
- done
-
- cd deps/Dependencies
-
- git submodule init SDWebImage
- git config submodule.SDWebImage.url ../../../SDWebImage
- git submodule update SDWebImage
-
- git submodule init boost-cmake
- git config submodule.boost-cmake.url ../../../play-boost-cmake
- git submodule update boost-cmake
-
- git submodule init ghc_filesystem
- git config submodule.ghc_filesystem.url ../../../filesystem
- git submodule update ghc_filesystem
-}
-
-build() {
- cmake -S libretro-play -B build \
- -DCMAKE_BUILD_TYPE=Release \
- -DBUILD_LIBRETRO_CORE=ON \
- -DBUILD_PLAY=OFF \
- -DBUILD_TESTS=OFF \
- -DENABLE_AMAZON_S3=OFF \
- -Wno-dev
- make -C build
-}
-
-package() {
- install -Dm 644 build/Source/ui_libretro/play_libretro.so -t "${pkgdir}"/usr/lib/libretro/
- install -Dm 644 libretro-play/License.txt -t "${pkgdir}"/usr/share/licenses/libretro-play/
-}
-
-# vim: ts=2 sw=2 et:
Copied: libretro-play/repos/community-x86_64/PKGBUILD (from rev 1103344, libretro-play/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-01-14 16:27:45 UTC (rev 1103345)
@@ -0,0 +1,88 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+
+pkgname=libretro-play
+pkgver=6905
+pkgrel=1
+pkgdesc='Sony PlayStation 2 core'
+arch=(x86_64)
+url=https://github.com/jpd002/Play-
+license=(MIT)
+groups=(libretro)
+depends=(
+ bzip2
+ glew
+ glibc
+ icu
+ libgl
+ libretro-core-info
+ zlib
+)
+makedepends=(
+ cmake
+ git
+ libglvnd
+)
+_commit=e519565020eede59bce446c568efd88221ecfdf0
+source=(
+ libretro-play::git+https://github.com/jpd002/Play-.git#commit=${_commit}
+ play-CodeGen::git+https://github.com/jpd002/Play--CodeGen.git
+ play-Dependencies::git+https://github.com/jpd002/Play-Dependencies.git
+ play-Framework::git+https://github.com/jpd002/Play--Framework.git
+ play-libchdr::git+https://github.com/jpd002/libchdr.git
+ play-Nuanceur::git+https://github.com/jpd002/Nuanceur.git
+ git+https://github.com/SDWebImage/SDWebImage.git
+ git+https://github.com/gulrak/filesystem.git
+)
+b2sums=(
+ SKIP
+ SKIP
+ SKIP
+ SKIP
+ SKIP
+ SKIP
+ SKIP
+ SKIP
+)
+
+pkgver() {
+ cd libretro-play
+ git rev-list --count HEAD
+}
+
+prepare() {
+ cd libretro-play
+
+ for submodule in deps/{CodeGen,Dependencies,Framework,Nuanceur,libchdr}; do
+ git submodule init ${submodule}
+ git config submodule.${submodule}.url ../play-${submodule#*/}
+ git submodule update ${submodule}
+ done
+
+ cd deps/Dependencies
+
+ git submodule init SDWebImage
+ git config submodule.SDWebImage.url ../../../SDWebImage
+ git submodule update SDWebImage
+
+ git submodule init ghc_filesystem
+ git config submodule.ghc_filesystem.url ../../../filesystem
+ git submodule update ghc_filesystem
+}
+
+build() {
+ cmake -S libretro-play -B build \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DBUILD_LIBRETRO_CORE=ON \
+ -DBUILD_PLAY=OFF \
+ -DBUILD_TESTS=OFF \
+ -DENABLE_AMAZON_S3=OFF \
+ -Wno-dev
+ make -C build
+}
+
+package() {
+ install -Dm 644 build/Source/ui_libretro/play_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+ install -Dm 644 libretro-play/License.txt -t "${pkgdir}"/usr/share/licenses/libretro-play/
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list