# Maintainer: Donn pkgname=cemu-bin pkgver=2.0 pkgrel=17 pkgdesc="Nintendo Wii U Emulator" arch=('x86_64') url="https://cemu.info" license=('MPL-2.0') groups=() depends=( 'pugixml' 'pulseaudio' 'opengl-driver' 'vulkan-driver' 'icu' 'gtk3' 'graphite' 'pcre' 'systemd' 'libffi' ) provides=('cemu') conflicts=('cemu' 'cemu-git') options=(!strip !docs libtool emptydirs) install= changelog= source=( "https://github.com/cemu-project/Cemu/releases/download/v${pkgver}-${pkgrel}/cemu-${pkgver}-${pkgrel}-ubuntu-20.04-x64.zip" "info.cemu.Cemu.desktop" "info.cemu.Cemu.metainfo.xml" "info.cemu.Cemu.png" ) noextract=() sha256sums=( '460897d64fa1aac2671123eff88b10d7c71f18bb5a1c987a07e34cd8d3acee73' 'SKIP' 'SKIP' 'SKIP' ) package() { CEMU_BIN_PATH="$srcdir/Cemu_${pkgver}-${pkgrel}/Cemu" # Patch patchelf --replace-needed libpcre.so.3 libpcre.so $CEMU_BIN_PATH patchelf --replace-needed libffi.so.7 libffi.so $CEMU_BIN_PATH patchelf --replace-needed libicuuc.so.71 libicuuc.so $CEMU_BIN_PATH patchelf --replace-needed libicui18n.so.71 libicui18n.so $CEMU_BIN_PATH patchelf --replace-needed libicudata.so.71 libicudata.so $CEMU_BIN_PATH patchelf --remove-needed libsepol.so.1 $CEMU_BIN_PATH patchelf --remove-needed libselinux.so.1 $CEMU_BIN_PATH # Chmod chmod +x $CEMU_BIN_PATH mkdir -p "$pkgdir/usr/share/cemu" cp -r "$srcdir/Cemu_${pkgver}-${pkgrel}"/* "$pkgdir/usr/share/cemu" install -Dm644 -t "$pkgdir"/usr/share/applications info.cemu.Cemu.desktop install -Dm644 -t "$pkgdir"/usr/share/metainfo info.cemu.Cemu.metainfo.xml install -Dm644 -t "$pkgdir"/usr/share/icons/hicolor/128x128/apps info.cemu.Cemu.png }