summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 53343c3502579a543442828b672ada90842177c8 (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
31
32
33
34
# Maintainer: Ali Nabipour <alinabipour01@gmail.com>

pkgname=cutefish-videoplayer-git
_pkgname=cutefish-videoplayer
pkgver=0.5.r0.gc121801
pkgrel=1
pkgdesc="An open source video player built with Qt/QML and libmpv"
arch=('x86_64')
url="https://github.com/cutefishos/videoplayer"
license=('GPL')
groups=('cutefish-git')
depends=('fishui-git' 'libcutefish-git' 'mpv' 'qt5-quickcontrols2')
makedepends=('extra-cmake-modules' 'qt5-tools' 'git')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("git+$url.git")
sha512sums=('SKIP')

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

build() {
  cd videoplayer

  cmake -DCMAKE_INSTALL_PREFIX=/usr .
  make
}

package() {
  cd videoplayer
  make DESTDIR="$pkgdir" install
}