void-packages/srcpkgs/discord/template
Coding-Doctors 3c3fb604c5 discord: update to 0.0.3
Closes: #9944 [via git-merge-pr]
2017-12-13 08:35:23 +01:00

35 lines
1.1 KiB
Bash

# Template file for 'discord'
# Originally created by Benjamin Hoffmeyer, modified for stable Discord
pkgname="discord"
version="0.0.3"
revision=1
depends="alsa-lib dbus-glib gtk+3 GConf libnotify nss libXtst libcxx libatomic"
wrksrc="Discord"
only_for_archs="x86_64"
nopie=yes
repository=nonfree
restricted=yes
short_desc="Chat and VOIP application"
maintainer="Ryan Conwell <ryanconwell@protonmail.com>"
license="proprietary"
homepage="https://discordapp.com"
distfiles="https://dl.discordapp.net/apps/linux/${version}/discord-${version}.tar.gz"
checksum="d02d809fe1756c6345815531d291bd65769ffc27dc464e56988ffe7270f2bdfb"
do_install() {
local package_location="usr/lib/$pkgname" item
vmkdir usr/share/pixmaps
vcopy discord.png /usr/share/pixmaps/
vmkdir usr/share/applications
vcopy discord.desktop /usr/share/applications/
vmkdir ${package_location}
for item in locales resources Discord libffmpeg.so libnode.so natives_blob.bin snapshot_blob.bin content_shell.pak icudtl.dat; do
vcopy "${item}" "${package_location}"
done
vmkdir usr/bin
ln -sfr $DESTDIR/${package_location}/Discord $DESTDIR/usr/bin/Discord
}
post_install() {
vlicense $FILESDIR/LICENSE
}