blob: e105218f8322889d9c22a6fe351cb4a764db0d06 (
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
|
# Maintainer: Taner Tas <taner76@gmail.com>
pkgname=vdpauinfo
pkgver=1.3
pkgrel=0
pkgdesc="Command line utility for querying the capabilities of a VDPAU device."
options="!check" # No testsuite
url="https://cgit.freedesktop.org/vdpau/vdpauinfo"
arch="all"
license="custom"
makedepends="libx11-dev libvdpau-dev"
source="https://gitlab.freedesktop.org/vdpau/vdpauinfo/uploads/6fa9718c507ef0fb6966170ef55344bf/vdpauinfo-$pkgver.tar.gz"
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var
make
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="a17812edb0596a50445b312efdbd14800f85d2e7c3d7b62114bc7ac6008da43032cd75c4464c3b2c89c0091184ac98dfa7698a1503d91331f6db44a437775fd0 vdpauinfo-1.3.tar.gz"
|