blob: defd6f8b1e8735245a25993eca8ee1dec8ad4c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# copyright 1999-2022 gentoo authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xdg-utils optfeature
DESCRIPTION="Open Source An Anime Game launcher for Linux with automatic anti-cheat patching and telemetry disabling, binary package"
HOMEPAGE="https://gitlab.com/an-anime-team/an-anime-game-launcher"
SRC_URI="https://gitlab.com/an-anime-team/an-anime-game-launcher/uploads/003620e21b2d8d70385bac8f2a862846/An_Anime_Game_Launcher.AppImage"
LICENSE="GPL-3 0BSD Apache-2.0 BSD-2-Clause BSD-3-Clause ISC MIT Unlicense"
SLOT="0"
KEYWORDS="~amd64"
PATCHES=( "${FILESDIR}/${PN}-launcher.patch" "${FILESDIR}/${PN}-desktop.patch" )
DEPEND="
net-libs/webkit-gtk \
dev-util/xdelta[lzma] \
app-arch/tar \
dev-vcs/git \
app-arch/unzip \
net-misc/curl \
app-arch/cabextract \
x11-libs/libnotify \
sys-auth/polkit \
dev-libs/libdbusmenu \
app-emulation/dxvk-bin \
app-emulation/winetricks \
virtual/wine \
"
RDEPEND="${DEPEND}"
BDEPEND="app-admin/chrpath"
src_unpack() {
mkdir ${WORKDIR}/${P} || die
cp ${DISTDIR}/An_Anime_Game_Launcher.AppImage ${WORKDIR}/${P} || die
}
src_prepare(){
chmod +x An_Anime_Game_Launcher.AppImage
./An_Anime_Game_Launcher.AppImage --appimage-extract || die "Extraction Failed"
chrpath -d "squashfs-root/public/discord-rpc/discord-rpc" || die "Patching Library Failed"
default
mv "squashfs-root/public/icons/256x256.png" "${PN}.png" || die
mv "squashfs-root/AppRun" "${PN}" || die
mv "squashfs-root/an-anime-game-launcher.desktop" "${PN}.desktop" || die
}
src_install(){
insinto "/usr/lib/${PN}"
doins "squashfs-root/resources.neu"
exeinto "/usr/lib/${PN}"
doexe "squashfs-root/an-anime-game-launcher"
doins -r "squashfs-root/public"
insinto "/usr/share/pixmaps"
doins "${PN}.png"
exeinto "/usr/bin"
doexe "${PN}"
insinto "/usr/share/applications/"
doins "${PN}.desktop"
}
pkg_postinst() {
xdg_desktop_database_update
optfeature "appindicator support" dev-libs/libayatana-appindicator dev-libs/libayatana-appindicator-bin
}
pkg_postrm() {
xdg_desktop_database_update
}
|