summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f0fb958ae433a7a708cc20cd033292befd3e7916 (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
# Maintainer: begin-theadventure <begin-thecontact.ncncb at dralias dot com>

pkgname=ticketbooth
pkgver=1.0.3.1
pkgrel=1
pkgdesc='Keep track of your favorite shows'
url="https://github.com/aleiepure/ticketbooth"
arch=('x86_64' 'aarch64')
license=('CCPL:0-1' 'LGPL3' 'GPL3-or-later')
depends=('python-tmdbsimple' 'libadwaita')
makedepends=('blueprint-compiler' 'git' 'meson')
checkdepends=('appstream-glib')
source=("git+$url.git#tag=v$pkgver")
sha256sums=('SKIP')

build() {
  arch-meson $pkgname build
  meson compile -C build
}

check() {
  meson test -C build --print-errorlog
}

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