summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1d0dec90e4ecf8cfbf317fa03b4d6601cfd65d26 (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
# Maintainer: Wellington <wellingtonwallace@gmail.com>

pkgname=fastgame-git
pkgver=0.2.0.r0.g6a53b7c
pkgrel=1
pkgdesc='Optimize system performance for games'
arch=(x86_64 i686)
url='https://github.com/wwmm/fastgame'
license=('GPL3')
depends=('boost-libs' 'gtk4' 'glib2' 'fmt' 'libsigc++-3.0')
makedepends=('meson' 'boost' 'itstool')
source=("git+https://github.com/wwmm/fastgame.git")
conflicts=(fastgame)
provides=(fastgame)
sha512sums=('SKIP')

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

build() {
  arch-meson fastgame build

  ninja -C build
}

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