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-07-21 15:31:37 +02:00
|
|
|
pkgver=2.0.45
|
2023-04-15 15:01:27 +02:00
|
|
|
pkgrel=1
|
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-19 19:59:18 +02:00
|
|
|
depends=('at-spi2-core' 'cairo' 'gcc-libs' 'gdk-pixbuf2' 'glib2' 'glibc' 'glu' 'gtk3' 'harfbuzz' 'hicolor-icon-theme'
|
|
|
|
'libglvnd' 'libice' 'libpng' 'libsm' 'libx11' 'libxext' 'libxrender' 'pango' 'wayland')
|
2022-11-11 05:14:38 +01:00
|
|
|
provides=('cemu')
|
2023-07-11 15:37:01 +02:00
|
|
|
conflicts=('cemu')
|
|
|
|
options=('!debug')
|
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-07-21 15:31:37 +02:00
|
|
|
b2sums=('01d88d052379279b2310c6df8b585069844851e712dc4aa4e53599996dd21e469c76f6ee207f243e380c6b633369e903df80122440a626bd13e80f398b906b25'
|
2023-07-09 16:29:11 +02:00
|
|
|
'66d0790e8d0b1220b73e4120c65a4e91fb7303f9171e7dfa14c38683b52089b59455e016616b4a23e52f0f74999f65a51cfd157de70a62557c808c7ef6454efe'
|
|
|
|
'a4f65a6c849adb4a75b911ba2ad47a20f06e277274b5764fe192066336d169b13fde75dba8ca67ad59d6f0dafba5805c7fcb969e859e5bf819405efce1fa02c6'
|
|
|
|
'51f787f6c6c15382da4d41c9d56c22b2ad9b99a807ffaf0101b52c7dbcdc3d904f7145bea70fd3a6eb7f5cf2025e8a4c814089a21e5f2c502cd38b30dbda4f42')
|
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
|
|
|
}
|