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-10-21 12:06:54 +02:00
|
|
|
pkgver=2.0.59
|
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'
|
2023-09-08 11:17:29 +02:00
|
|
|
'libglvnd' 'libice' 'libpng' 'libsm' 'libx11' 'libxext' 'libxrender' 'pango' 'systemd-libs' '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##*.}
|
2023-09-30 09:59:25 +02:00
|
|
|
source=("https://github.com/cemu-project/Cemu/releases/download/v$_srcver/cemu-$_srcver-ubuntu-22.04-x64.zip"
|
2023-02-20 23:11:03 +01:00
|
|
|
"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-10-21 12:06:54 +02:00
|
|
|
b2sums=('1f1e446893e37a7206b4190bbfea8ad67c5dd7f9cc4b084f6ceab4f3b049295297752dc17ccd93b7cd91b3538fef517e8f4bd8b180c469e94317b3bada1f8b46'
|
2023-07-09 16:29:11 +02:00
|
|
|
'66d0790e8d0b1220b73e4120c65a4e91fb7303f9171e7dfa14c38683b52089b59455e016616b4a23e52f0f74999f65a51cfd157de70a62557c808c7ef6454efe'
|
|
|
|
'a4f65a6c849adb4a75b911ba2ad47a20f06e277274b5764fe192066336d169b13fde75dba8ca67ad59d6f0dafba5805c7fcb969e859e5bf819405efce1fa02c6'
|
2023-08-20 22:35:06 +02:00
|
|
|
'fde11181d1ad4b6d28417d6842cef3a436e856acf312b4066c071a0f933bba676d99a041c5b1bf695a09833d92bc2cf47f0ce5ae179e80f6ba587bc79991a2d3')
|
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
|
|
|
}
|