blob: 48b4150806da52f744d8beb596a0cdff522bdad9 (
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
|
# Maintainer: zt <zt@zt64.dev>
# Maintainer: cookie <kyliepc@proton.me>
_pkgname=vesktop
pkgname=vesktop-electron-git
pkgdesc="An Electron-based Discord app with Vencord & improved Linux support using system provided Electron (git version). Unsupported"
pkgver=1.5.3.r17.g062b536
pkgrel=1
arch=("x86_64" "aarch64")
url="https://github.com/Vencord/Vesktop"
license=('GPL-3.0-only')
depends=('electron')
makedepends=('git' 'nodejs>=18')
optdepends=(
'libnotify: Notifications'
'xdg-utils: Open links, files, etc'
)
provides=("vesktop")
conflicts=('vesktop-git')
source=("$_pkgname::git+$url.git" "vesktop.desktop" "vesktop.sh" "afterPack.js")
sha256sums=('SKIP'
'c7845033716d7fdec2ea1daf8c3575b504bc6a5c19c702e3722a0e6237ae571f'
'58c61ef14e5eaefe7207a6b66b065973a6002a2ae1d0fb9fd8ec2d2c2b198607'
'122b17ce996318e533e6f2ab1c9b2961b39c3eba271c9b40f10c0da5dd738baa')
pkgver() {
cd "$_pkgname"
git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' \
| sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/$_pkgname"
# Add unpacked icon extraction script
sed -i '/"beforePack": "scripts\/build\/sandboxFix.js",/a\ \ \ \ \ \ \ \ "afterPack": "'$srcdir'/afterPack.js",' package.json
# Use system's electron
sed -i "/linux/s/^/ \"electronDist\": \"\\/usr\\/lib\\/electron\",\n/" package.json
corepack pnpm i
corepack pnpm build
corepack pnpx electron-builder --dir
}
package() {
cd "$srcdir/$_pkgname"
# Create necessary directories
install -d "$pkgdir/usr/lib/$_pkgname"
install -d "$pkgdir/usr/bin"
cp "dist/linux-unpacked/resources/app.asar" "$pkgdir/usr/lib/$_pkgname"
install -Dm644 "../vesktop.desktop" "$pkgdir/usr/share/applications/vesktop.desktop" # Install desktop entry
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" # Install license
for _icons in 1024 512 256 128 64 48 32 16; do
install -Dm644 "dist/.icon-set/icon_${_icons}.png" "$pkgdir/usr/share/icons/hicolor/${_icons}x${_icons}/apps/$_pkgname.png"
done # Install icons
install -Dm755 "../vesktop.sh" "$pkgdir/usr/bin/$_pkgname" # Start script
}
|