summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 02aa50bdcfb9024a63056bc6b33c67e6519b0ff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Maintainer: Igor Dyatlov <dyatlov.igor@protonmail.com>
# Co-Maintainer: Mark Wagie <mark dot wagie at tutanota dot com>

pkgname=girens
pkgver=1.1.10.r14.g448e92d
pkgrel=2
pkgdesc="A Plex GTK client for playing movies, TV shows and music from your Plex library."
arch=('any')
url="https://gitlab.gnome.org/tijder/girens"
license=('GPL3')
depends=('libadwaita' 'org.freedesktop.secrets' 'plex-remote'
  'python-plexapi' 'libass' 'python-opengl' 'python-mpv'
  'fribidi' 'ffmpeg' 'python-mpv' 'python-idna' 'python-certifi'
  'python-chardet' 'python-urllib3' 'python-requests'
  'python-tqdm' 'python-six' 'python-websocket-client'
  'python-gobject' 'python-cairo')
makedepends=('git' 'blueprint-compiler' 'meson')
checkdepends=('appstream-glib')
_commit=448e92dd0d30a025e41d6c5977dc0c71fc69c897  # Prepare for release 2.0.0
source=($pkgname::git+$url.git#commit=$_commit)
b2sums=('SKIP')

pkgver() {
  cd $pkgname
  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  local meson_options=(
    --libdir=lib
  )

  arch-meson $pkgname build "${meson_options[@]}"
  meson compile -C build
}

check() {
  meson test -C build --print-errorlogs || :
}

package() {
  meson install -C build --destdir "$pkgdir"
}