[arch-commits] Commit in libretro-dolphin/repos (2 files)
Maxime Gauduin
alucryd at archlinux.org
Mon Nov 2 13:30:42 UTC 2020
Date: Monday, November 2, 2020 @ 13:30:41
Author: alucryd
Revision: 739660
archrelease: copy trunk to community-testing-x86_64
Added:
libretro-dolphin/repos/community-testing-x86_64/
libretro-dolphin/repos/community-testing-x86_64/PKGBUILD
(from rev 739659, libretro-dolphin/trunk/PKGBUILD)
----------+
PKGBUILD | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 75 insertions(+)
Copied: libretro-dolphin/repos/community-testing-x86_64/PKGBUILD (from rev 739659, libretro-dolphin/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2020-11-02 13:30:41 UTC (rev 739660)
@@ -0,0 +1,75 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+
+pkgname=libretro-dolphin
+pkgver=32966
+pkgrel=2
+pkgdesc='Nintendo GC/Wii core'
+arch=(x86_64)
+url=https://github.com/libretro/dolphin
+license=(GPL2)
+groups=(libretro)
+depends=(
+ bluez-libs
+ bzip2
+ enet
+ gcc-libs
+ glibc
+ libevdev
+ libfmt.so
+ libgl
+ libglvnd
+ libhidapi-hidraw.so
+ libmbedcrypto.so
+ libmbedtls.so
+ libmbedx509.so
+ libpng
+ libretro-core-info
+ libudev.so
+ libusb-1.0.so
+ libx11
+ libxi
+ libxrandr
+ lzo
+ sfml
+ systemd-libs
+ xz
+ zlib
+ zstd
+)
+makedepends=(
+ cmake
+ git
+ mesa
+ python
+)
+provides=(libretro-dolphin)
+conflicts=(libretro-dolphin)
+_commit=7510bb279a371a1c53ebe8dd20214df2eb89794e
+source=(libretro-dolphin::git+https://github.com/libretro/dolphin.git#commit=${_commit})
+sha256sums=(SKIP)
+
+pkgver() {
+ cd libretro-dolphin
+
+ git rev-list --count HEAD
+}
+
+build() {
+ cmake -S libretro-dolphin -B build \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DENABLE_LTO=ON \
+ -DENABLE_NOGUI=OFF \
+ -DENABLE_QT=OFF \
+ -DENABLE_TESTS=OFF \
+ -DLIBRETRO=ON \
+ -DUSE_SHARED_ENET=ON \
+ -Wno-dev
+ make -C build
+}
+
+package() {
+ install -Dm 644 build/dolphin_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list