summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4f4fe7d6c8c910325eb41247feeec20761399adf (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
# Maintaner: Mirko Brombin <send@mirko.pm>
# Contributor: Mirko Brombin <send@mirko.pm>

pkgname=twitz
pkgver=1.1.0
pkgrel=1
pkgdesc='A GTK Twitch client for Linux (Under development)'
arch=('x86_64')
url="https://github.com/mirkobrombin/Twitz"
license=('GPL3')
depends=('hicolor-icon-theme' 'dconf' 'python' 'libhandy' 'gtk3' 'python-gobject' 'webkit2gtk' 'gst-plugins-good' 'gst-plugins-base' 'gst-libav' 'youtube-dl', 'python-mpv', 'python-opengl')
makedepends=('meson' 'ninja')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mirkobrombin/Twitz/archive/${pkgver}.tar.gz")
sha256sums=('c39f74e082a6bfcabc363914cf68130bb0e49a68725c024baa5e8297d9fd4467')

build() {
  cd "Twitz-${pkgver}"
  meson --prefix='/usr' build
  ninja -C build
}

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