Facebook
From Mammoth Goose, 1 Year ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 200
  1. # Maintainer: Fabian Bornschein <fabiscafe-cat-mailbox-dog-org>
  2. # Fediverse: @[email protected]
  3. # Contributor: Luna Jernberg <[email protected]>
  4. # Fediverse: @[email protected]
  5.  
  6. pkgname=tuba
  7. pkgver=0.3.1
  8. pkgrel=1
  9. pkgdesc='Browse the Fediverse'
  10. arch=(
  11.   aarch64 #ALARM
  12.   armv7h  #ALARM
  13.   i686    #Arch Linux32
  14.   x86_64  #Arch Linux
  15. )
  16. url='https://tuba.geopjr.dev/'
  17. license=('GPL3')
  18. depends=(
  19.   gtk4
  20.   libadwaita
  21.   libgee
  22.   libsoup3
  23.   gtksourceview5
  24. )
  25. makedepends=(
  26.   git
  27.   meson
  28.   vala
  29. )
  30.  
  31. optdepends=(
  32.   ## https://github.com/GeopJr/Tuba/issues/32#issuecomment-1483280966
  33.   'webp-pixbuf-loader: calckey support (webp)'
  34. )
  35. _commit=825dbced1179f947d5c01f769a0e81c6098727a1 # tags/0.3.1^0
  36. source=("git+https://github.com/GeopJr/Tuba.git#commit=$_commit")
  37. sha256sums=('SKIP')
  38.  
  39. pkgver() {
  40.   cd Tuba
  41.   git describe --tags | sed -r 's/^v//;s/[^-]*-g/r&/;s/-/+/g'
  42. }
  43.  
  44. prepare() {
  45.   cd Tuba
  46. }
  47.  
  48. build() {
  49.   arch-meson Tuba build
  50.   meson compile -C build
  51. }
  52.  
  53. check() {
  54.   meson test -C build --print-errorlogs
  55. }
  56.  
  57. package() {
  58.   meson install -C build --destdir "$pkgdir"
  59.   ln -s "/usr/bin/dev.geopjr.Tuba" "$pkgdir/usr/bin/tuba"
  60. }
  61.  
  62.