cemu-bin/PKGBUILD
2022-11-26 12:14:40 +02:00

64 lines
1.7 KiB
Bash

# Maintainer: Donn <me@donn.website>
pkgname=cemu-bin
pkgver=2.0
pkgrel=18
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=(
'f439e10b7be66b0e64ee5af6c86177246f8363def932131df99a2c213d4d6c79'
'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
}