summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e4b7104eb808075ddb510b92c2a38860db066afa (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
# Maintainer: Burobin Alexander <alexandrburobin@gmail.com>

pkgname="gswatcher"
pkgver="1.6.4"
pkgrel=1

pkgdesc="A simple game server browser and an administrative tool"
url="https://github.com/lxndr/gswatcher"
arch=(x86_64)
license=(GPL2)
depends=(libgee "gtk4>=4.6.1" "libadwaita>=1:1.3.0" "lua>=5.4.6" geoip)
makedepends=(meson ninja "vala>=0.56.13")

source=("https://github.com/lxndr/$pkgname/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('33a25803e300973ae25d0e788ae97d5b7d755768baac27a1b1cbc542c12fb999')

build() {
  local meson_options=(
    -D tests=false
  )

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

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