blob: 32d5324a24142afdeb237db7d71a47ad134c488e (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Maintainer: zoorat <zoorat [at] protonmail [dot] com>
_pkgname="betterdiscord-installer"
pkgname="$_pkgname-bin"
pkgver=1.3.0
pkgrel=2
pkgdesc="A simple standalone program which automates the installation, removal and maintenance of BetterDiscord."
arch=('x86_64')
# url="https://github.com/BetterDiscord/Installer"
url="https://betterdiscord.app/"
license=('MIT')
depends=("alsa-lib"
"at-spi2-core"
"sh"
"cairo"
"dbus"
"expat"
"gcc-libs"
"gdk-pixbuf2"
"glib2"
"glibc"
"gtk3"
"hicolor-icon-theme"
"libcups"
"libdrm"
"libx11"
"libxcb"
"libxcomposite"
"libxdamage"
"libxext"
"libxfixes"
"libxkbcommon"
"libxrandr"
"libxshmfence"
"mesa"
"nspr"
"nss"
"pango")
provides=("betterdiscord" "$_pkgname")
conflicts=("betterdiscord" "$_pkgname")
replaces=("betterdiscord" "$_pkgname")
options=(strip emptydirs zipman)
source=("${pkgname}-${pkgver}.${CARCH}.AppImage::https://github.com/BetterDiscord/Installer/releases/download/v${pkgver}/BetterDiscord-Linux.AppImage"
"LICENSE::https://raw.githubusercontent.com/BetterDiscord/Installer/main/LICENSE"
"file://usr--SLASH--bin--SLASH--betterdiscord-installer")
noextract=("${pkgname}-${pkgver}.${CARCH}.AppImage")
b2sums=('97cd08845df006f9f40eb33d9d4cdf63aef60a3fa03a97153243dede4f13559d728c9874c6de1fafd0ca5f2714773fe04343bc10b07377b11347ffefa3127db3'
'9efca07a8806137067825ffa7e285950d4bbd1ed3c5a252af83d9408d51fc6530f9be7e1a467e28e73374b9057f52646fff419545a9d2fa466412ee2043ac56d'
'b31d61be03a20c315a0fbcf2b2a75da5fe442d7de7951a9c75c31e34ed0c91c9f15b585bc82fa9634e913c774b3f932cf3d476b981eacfb8707f6db7503494c7')
prepare() {
# making .AppImage file executable
chmod +x "${pkgname}-${pkgver}.${CARCH}.AppImage"
# extract .AppImage file
"./${pkgname}-${pkgver}.${CARCH}.AppImage" --appimage-extract >/dev/null
}
build() {
# modifying .desktop file
sed -i -E "s|Exec=AppRun|Exec=/usr/bin/${_pkgname}|" "squashfs-root/${_pkgname}.desktop"
}
package() {
# Copy app files
install -dm 755 "${pkgdir}/opt/${pkgname}"
cp -a squashfs-root/* "${pkgdir}/opt/${pkgname}"
# Fix permissions
for d in locales resources; do
chmod 755 "${pkgdir}/opt/${pkgname}/$d"
find "${pkgdir}/opt/${pkgname}/$d" -type d -exec chmod 755 {} +
done
# Link entry point
install -dm 755 "${pkgdir}/usr/bin"
cp "usr--SLASH--bin--SLASH--betterdiscord-installer" "${pkgdir}/usr/bin/${_pkgname}"
# Copy icons files
install -dm 755 "${pkgdir}/usr/share/icons"
find squashfs-root/usr/share/icons -type d -exec chmod 755 {} +
cp -a squashfs-root/usr/share/icons/* "${pkgdir}/usr/share/icons"
# Copy desktop file
install -Dm 644 "squashfs-root/${_pkgname}.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop"
# Install LICENSE file
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# Remove unused files
rm -rf "${pkgdir}/opt/${pkgname}"/{usr,swiftshader,AppRun,${_pkgname}.{desktop,png}}
rm -rf "${pkgdir}/opt/${pkgname}"/{libGLESv2.so,libEGL.so,libvk_swiftshader.so,libvulkan.so}
rm -rf "${pkgdir}/opt/${pkgname}"/LICENSE*
}
|