summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4e63af55258c813d2d83ef1a583d3a5357270cf3 (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: nafets227 <nafets227@users.noreply.github.com>
pkgname=vdr-softhddevice-drm-gles
pkgver=1.6.7
pkgrel=1
_vdrapi=13
pkgdesc="VDR output plugin for software HD based on DRM interface"
arch=('aarch64')
license=('AGPL3')
depends=('ffmpeg' "vdr-api=${_vdrapi}" 'alsa-lib' 'glm')  # mesa-utils glu libva-mesa-driver
source=(
	"${pkgname}::git+https://github.com/rellla/vdr-plugin-softhddevice-drm-gles.git#tag=$pkgver"
	)
sha256sums=(
	'SKIP'
	)

prepare() {
  cd "${srcdir}/${pkgbase}"
}

build() {
  cd "$srcdir/${pkgname}"
  make
}

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