# Maintainer: Anna # Co-Maintainer: E5ten # Contributor: Cayde Dixon # Contributor: Anthony Anderson pkgname=discord pkgver=0.0.9 pkgrel=3 pkgdesc="All-in-one voice and text chat for gamers that's free and secure." arch=('x86_64') url='https://discordapp.com/' license=('custom') depends=('gtk3' 'gconf' 'libnotify' 'libxss' 'glibc' 'alsa-lib' 'nspr' 'nss' 'xdg-utils') optdepends=( 'libpulse: For pulseaudio support' 'noto-fonts-emoji: Google font for emoji support.' 'ttf-symbola: Font for emoji support.' 'noto-fonts-cjk: Font for special characters such as /shrug face.' ) source=(LICENSE "https://dl.discordapp.net/apps/linux/${pkgver}/${pkgname}-${pkgver}.tar.gz") md5sums=('26b3229c74488c64d94798e48bc49fcd' '3fc3bd78302f4a27dc730e82089b99d9') package() { # Install the main files. install -d "${pkgdir}/opt/${pkgname}" cp -a "${srcdir}/Discord/." "${pkgdir}/opt/${pkgname}" # Exec bit chmod 755 "${pkgdir}/opt/${pkgname}/Discord" # Desktop Entry install -Dm 644 "${pkgdir}/opt/${pkgname}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop" sed -i s%/usr/share%/opt% ${pkgdir}/usr/share/applications/${pkgname}.desktop # Main binary install -d "${pkgdir}/usr/bin" ln -s "/opt/${pkgname}/Discord" "${pkgdir}/usr/bin/${pkgname}" # Create symbolic link to the icon install -d "${pkgdir}/usr/share/pixmaps" ln -s "/opt/${pkgname}/discord.png" "${pkgdir}/usr/share/pixmaps/${pkgname}.png" # License install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }