void-packages/srcpkgs/discord/template
Ryan Conwell 1b3248fb51 discord: add libcxx dependency
Closes: #7329 [via git-merge-pr]
2017-08-10 15:15:46 +02:00

36 lines
1.1 KiB
Bash

# Template file for 'discord'
# Originally created by Benjamin Hoffmeyer, modified for stable Discord
pkgname="discord"
version="0.0.2"
revision=3
depends="alsa-lib dbus-glib gtk+3 GConf libnotify nss libXtst libcxx"
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="dfc17ac6f683a45f896a4f881b900b2d46d74b0625cb661db1bfe39b33a06769"
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
}