2023-02-20 20:18:49 +01:00
|
|
|
# Maintainer: lod <aur@cyber-anlage.de>
|
|
|
|
# Contributer: Donn <me@donn.website>
|
|
|
|
|
2022-11-11 05:14:38 +01:00
|
|
|
pkgname=cemu-bin
|
2023-04-05 00:20:10 +02:00
|
|
|
pkgver=2.0.32
|
2023-04-05 00:56:05 +02:00
|
|
|
pkgrel=2
|
2022-11-11 05:14:38 +01:00
|
|
|
pkgdesc="Nintendo Wii U Emulator"
|
|
|
|
arch=('x86_64')
|
|
|
|
url="https://cemu.info"
|
2023-02-20 20:14:32 +01:00
|
|
|
license=('MPL2')
|
2023-04-05 00:56:05 +02:00
|
|
|
depends=('at-spi2-core' 'cairo' 'gcc-libs' 'gdk-pixbuf2' 'glib2' 'glibc' 'glu' 'gtk3' 'harfbuzz'
|
|
|
|
'hicolor-icon-theme' 'libglvnd' 'libice' 'libsm' 'libx11' 'libxext' 'libxrender' 'pango' 'wayland')
|
2023-02-20 20:14:32 +01:00
|
|
|
makedepends=('patchelf')
|
2022-11-11 05:14:38 +01:00
|
|
|
provides=('cemu')
|
|
|
|
conflicts=('cemu' 'cemu-git')
|
|
|
|
options=(!strip !docs libtool emptydirs)
|
2023-02-20 23:11:03 +01:00
|
|
|
_srcver=${pkgver%.*}-${pkgver##*.}
|
|
|
|
source=("https://github.com/cemu-project/Cemu/releases/download/v$_srcver/cemu-$_srcver-ubuntu-20.04-x64.zip"
|
|
|
|
"https://raw.githubusercontent.com/cemu-project/Cemu/main/dist/linux/info.cemu.Cemu.desktop"
|
|
|
|
"https://github.com/cemu-project/Cemu/raw/main/dist/linux/info.cemu.Cemu.png"
|
|
|
|
"https://raw.githubusercontent.com/cemu-project/Cemu/main/dist/linux/info.cemu.Cemu.metainfo.xml")
|
2023-04-05 00:20:10 +02:00
|
|
|
sha256sums=('981a56f5a3fe7dcc89f67727574343d6bdb17b08209149ac665b75be49a576ca'
|
2023-02-20 20:14:32 +01:00
|
|
|
'3e9380eb47646fede56c0de59ddab872627c00629820ef5f974be0d07e4f3490'
|
2023-02-20 23:11:03 +01:00
|
|
|
'6458a99b8bd54e44857efa0f82bfd6035e7e072e7e080e3330e4e2cfe89cbd33'
|
2023-04-05 00:20:10 +02:00
|
|
|
'9a281a8c5b9d0dbe826c5ea0d942f5d2c307d6d9e60729352240e82ee24c5bfe')
|
2023-02-20 20:17:09 +01:00
|
|
|
|
|
|
|
prepare() {
|
2023-02-20 23:11:03 +01:00
|
|
|
cd $srcdir/Cemu_$_srcver
|
2022-11-11 05:14:38 +01:00
|
|
|
|
2023-04-05 00:56:05 +02:00
|
|
|
_libs=('libffi.so.7' 'libicuuc.so.71' 'libicui18n.so.71' 'libicudata.so.71')
|
2023-02-20 20:17:09 +01:00
|
|
|
for lib in ${_libs[@]}
|
|
|
|
do
|
2023-02-20 22:29:00 +01:00
|
|
|
patchelf --replace-needed $lib ${lib%.*} ./Cemu
|
2023-02-20 20:17:09 +01:00
|
|
|
done
|
2022-11-11 05:14:38 +01:00
|
|
|
|
2023-02-20 22:29:00 +01:00
|
|
|
patchelf --remove-needed libsepol.so.1 ./Cemu
|
|
|
|
patchelf --remove-needed libselinux.so.1 ./Cemu
|
2023-02-20 20:17:09 +01:00
|
|
|
}
|
2022-11-11 05:14:38 +01:00
|
|
|
|
2023-02-20 20:17:09 +01:00
|
|
|
package() {
|
2023-02-20 23:11:03 +01:00
|
|
|
cd $srcdir/Cemu_$_srcver
|
2023-02-20 20:17:09 +01:00
|
|
|
|
2023-02-20 22:29:00 +01:00
|
|
|
install -Dm 755 ./Cemu $pkgdir/usr/bin/cemu
|
2022-11-11 05:14:38 +01:00
|
|
|
|
2023-02-20 23:11:03 +01:00
|
|
|
install -d $pkgdir/usr/share/Cemu
|
|
|
|
cp -r ./{gameProfiles,resources,shaderCache} $pkgdir/usr/share/Cemu
|
2022-11-11 05:14:38 +01:00
|
|
|
|
2023-02-20 23:11:03 +01:00
|
|
|
sed -i -e '/^Exec=Cemu/cExec=cemu' $srcdir/info.cemu.Cemu.desktop
|
|
|
|
install -Dm 644 -t $pkgdir/usr/share/applications $srcdir/info.cemu.Cemu.desktop
|
|
|
|
install -Dm 644 -t $pkgdir/usr/share/icons/hicolor/128x128/apps $srcdir/info.cemu.Cemu.png
|
|
|
|
install -Dm 644 -t $pkgdir/usr/share/metainfo $srcdir/info.cemu.Cemu.metainfo.xml
|
2023-02-20 20:14:32 +01:00
|
|
|
}
|