Skip to content

Commit

Permalink
addpkg: dissent-bin (e35eab5)
Browse files Browse the repository at this point in the history
git-subtree-dir: dissent-bin
git-subtree-mainline: e35eab5
git-subtree-split: 6f0ea62
  • Loading branch information
txtsd committed Mar 4, 2024
2 parents e35eab5 + 6f0ea62 commit 9d3323c
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
30 changes: 30 additions & 0 deletions dissent-bin/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
pkgbase = dissent-bin
pkgdesc = Discord client written in go and gtk4 (binary version)
pkgver = 0.0.20
pkgrel = 1
url = https://github.com/diamondburned/dissent
arch = x86_64
arch = aarch64
license = GPL-3.0-only
depends = gtk4>=4.10.3
depends = gobject-introspection
depends = libadwaita>=1.3.2
depends = libgirepository
depends = harfbuzz
depends = glib2
depends = graphene
depends = cairo
depends = hicolor-icon-theme
depends = pango
depends = glibc
depends = gdk-pixbuf2
depends = gcc-libs
provides = dissent
conflicts = dissent
conflicts = dissent-git
source_x86_64 = https://github.com/diamondburned/dissent/releases/download/v0.0.20/dissent-linux-amd64-v0.0.20-.tar.zst
sha256sums_x86_64 = 70fdd326c071ae2d0e05d4afd10181d1d021c6297afbd6d262d563d4f0f46f2e
source_aarch64 = https://github.com/diamondburned/dissent/releases/download/v0.0.20/dissent-linux-arm64-v0.0.20-.tar.zst
sha256sums_aarch64 = 8beed2054a973795e7b47387a6fef7981805f68665441aeb9a8242908132de44

pkgname = dissent-bin
5 changes: 5 additions & 0 deletions dissent-bin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
src
pkg

*.tar.zst
*.tar.gz
27 changes: 27 additions & 0 deletions dissent-bin/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Maintainer: esrh - https://esrh.me
# Maintainer: txtsd <[email protected]>

pkgname=dissent-bin
_pkgname=dissent
_fqpn=so.libdb.${_pkgname}
pkgver=0.0.20
pkgrel=1
pkgdesc='Discord client written in go and gtk4 (binary version)'
arch=('x86_64' 'aarch64')
url='https://github.com/diamondburned/dissent'
license=('GPL-3.0-only')
provides=('dissent')
conflicts=('dissent' 'dissent-git')
depends=('gtk4>=4.10.3' 'gobject-introspection' 'libadwaita>=1.3.2'
'libgirepository' 'harfbuzz' 'glib2' 'graphene' 'cairo'
'hicolor-icon-theme' 'pango' 'glibc' 'gdk-pixbuf2' 'gcc-libs')

sha256sums_x86_64=('70fdd326c071ae2d0e05d4afd10181d1d021c6297afbd6d262d563d4f0f46f2e')
sha256sums_aarch64=('8beed2054a973795e7b47387a6fef7981805f68665441aeb9a8242908132de44')
source_x86_64=("https://github.com/diamondburned/dissent/releases/download/v${pkgver}/dissent-linux-amd64-v${pkgver}-.tar.zst")
source_aarch64=("https://github.com/diamondburned/dissent/releases/download/v${pkgver}/dissent-linux-arm64-v${pkgver}-.tar.zst")

package() {
install -Dm 755 "${srcdir}/bin/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
cp -r "${srcdir}/share/" "${pkgdir}/usr/"
}

0 comments on commit 9d3323c

Please sign in to comment.