summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5a523c4e2f61ee74294bcc434e86ea33371cac68 (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
# Maintainer: arcamagna <dev@arcamagna.com>
pkgname=videowall-git
_pkgname=videowall
pkgver=0.1
pkgrel=1
pkgdesc="Mimics a video wall by creating an overlay filter for ffmpeg"
arch=('any')
url='https://github.com/arcamagna/videowall'
license=('GPL3')
depends=('bash' 'xorg-xdpyinfo' 'ffmpeg' 'pciutils')
optdepends=('mpv')
makedepends=('git')
provides=($_pkgname)
conflicts=($_pkgname)
source=('git+https://github.com/arcamagna/videowall.git')
md5sums=('SKIP')
pkgver() {
  cd "${_pkgname}"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
  cd "${_pkgname}"
  install -Dm755 videowall "${pkgdir}/usr/bin/videowall"  
}