summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 47fc85de0fc6509cef400a8aa427b927a1214a4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Rui Ventura <rventura.pt@outlook.com>
pkgname=chiaki
pkgver=2.0.1
pkgrel=1
pkgdesc="Free and Open Source PS4 Remote Play Client"
arch=(x86_64)
url=https://git.sr.ht/~thestr4ng3r/chiaki
license=(AGPL3)
provides=(chiaki)
depends=(ffmpeg gcc-libs qt5-multimedia qt5-svg opus "openssl>=1.1" sdl2)
makedepends=(cmake protobuf python-protobuf)
source=("$url/refs/v$pkgver/$pkgname-v$pkgver-src.tar.gz")
sha256sums=('742113dfc9a05992cc2a2ca5dbebfaf9545cf86947ff9df38409be9c3423d94d')

build() {
  cd "$srcdir/$pkgname"
  cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
}

package() {
  cd "$srcdir/$pkgname/build"
  make DESTDIR="$pkgdir" -j$nproc install
}