blob: ecc9319e7248759ff8ab3272490aab8d765b9112 (
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
|
# Maintainer: Kimiblock Moe
# Contributor: Filipe LaĆns (FFY00) <lains@archlinux.org>
# Contributor: Morgan <morganamilo@archlinux.org>
# Contributor: T.J. Townsend <blakkheim@archlinux.org>
# Contributor: Robin Candau <antiz@archlinux.org>
pkgname=discord-bwrap
_pkgname=Discord
pkgver=0.0.75
pkgrel=1
pkgdesc="All-in-one voice and text chat for gamers. Sandboxed for privacy."
arch=('x86_64')
url='https://discord.com'
license=('custom')
conflicts=("discord")
options=(!debug !strip)
optdepends=('libpulse: PulseAudio support'
'libappindicator-gtk3: Systray indicator support'
'xdg-utils: Open files')
source=("https://dl.discordapp.net/apps/linux/$pkgver/discord-$pkgver.tar.gz"
"LICENSE-$pkgver.html::https://discordapp.com/terms"
"OSS-LICENSES-$pkgver.html::https://discordapp.com/licenses"
"portable-config"
"discord.sh")
sha512sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP')
prepare() {
cd $_pkgname
sed -i "s|Exec=.*|Exec=/usr/bin/discord|" discord.desktop
}
package() {
depends=('libnotify' 'libxss' 'nspr' 'nss' 'gtk3' "portable")
install -d "$pkgdir"/opt/discord
cp -a $_pkgname/. "$pkgdir"/opt/discord
chmod 755 "$pkgdir"/opt/discord/$_pkgname
rm "$pkgdir"/opt/discord/postinst.sh
install -d "$pkgdir"/usr/bin
#ln -s /opt/discord/$_pkgname "$pkgdir"/usr/bin/discord
install -d "$pkgdir"/usr/share/applications
ln -s /opt/discord/discord.desktop "$pkgdir"/usr/share/applications/discord.desktop
install -d "$pkgdir"/usr/share/icons/hicolor/256x256/apps
ln -s /opt/discord/discord.png "$pkgdir"/usr/share/icons/hicolor/256x256/apps/discord.png
install -Dm644 LICENSE-$pkgver.html "$pkgdir"/usr/share/licenses/discord/LICENSE.html
install -Dm644 OSS-LICENSES-$pkgver.html "$pkgdir"/usr/share/licenses/discord/OSS-LICENSES.html
install -Dm644 portable-config "${pkgdir}/usr/lib/portable/info/com.discord.app/config"
install -Dm755 discord.sh "${pkgdir}/usr/bin/discord"
}
|