Date: Thursday, January 23, 2020 @ 12:21:35 Author: alucryd Revision: 554945
upgpkg: vdpauinfo 1.3-1 Modified: vdpauinfo/trunk/PKGBUILD ----------+ PKGBUILD | 47 +++++++++++++++++++++++++++++------------------ 1 file changed, 29 insertions(+), 18 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-01-23 12:19:41 UTC (rev 554944) +++ PKGBUILD 2020-01-23 12:21:35 UTC (rev 554945) @@ -1,30 +1,41 @@ -# Maintainer: Timothy Redaelli <[email protected]> +# Maintainer: Maxime Gauduin <[email protected]> +# Contributor: Timothy Redaelli <[email protected]> # Contributor: Aaron Plattner <[email protected]> # Contributor: Bart Verhoeven <[email protected]> pkgname=vdpauinfo -pkgver=1.0 -pkgrel=3 -pkgdesc="Command line utility for querying the capabilities of a VDPAU device." -arch=('x86_64') -url="https://cgit.freedesktop.org/~aplattner/vdpauinfo" -license=('custom') -depends=('libvdpau' 'libx11') -source=("https://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz" - "https://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz.sig") -validpgpkeys=('BD68A042C603DDAD9AA354B0F56ACC8F09BA9635') # Aaron Plattner <[email protected]> -sha256sums=('4054960b7ae618c351ff1ce3e7831b5cbda964ae1fbf9969b7146404d3044bc4' - 'SKIP') +pkgver=1.3 +pkgrel=1 +pkgdesc='Command line utility for querying the capabilities of a VDPAU device' +arch=(x86_64) +url=https://cgit.freedesktop.org/~aplattner/vdpauinfo +license=(custom) +depends=( + gcc-libs + libvdpau + libx11 +) +source=( + https://gitlab.freedesktop.org/vdpau/vdpauinfo/uploads/6fa9718c507ef0fb6966170ef55344bf/vdpauinfo-1.3.tar.gz + https://gitlab.freedesktop.org/vdpau/vdpauinfo/uploads/6acac6b91cf1d960939c50e25dd4c28d/vdpauinfo-1.3.tar.gz.gpg +) +validpgpkeys=(BD68A042C603DDAD9AA354B0F56ACC8F09BA9635) # Aaron Plattner <[email protected]> +sha256sums=('cfc470758ae6874adabdf5bad0b5bab1c2135c86a73bab9f0acd336f9b6ad268' + '2e1d1a81a5ac0e7520ff877ee4a168d3e26dee6cda60f224ac3a516f16ae7d01') build() { - cd "$srcdir"/$pkgname-$pkgver + cd vdpauinfo-${pkgver} - ./configure --prefix=/usr + ./configure \ + --prefix=/usr make } package() { - cd "$srcdir"/$pkgname-$pkgver - make DESTDIR="$pkgdir" install - install -D -m644 "$srcdir"/$pkgname-$pkgver/COPYING "$pkgdir"/usr/share/licenses/$pkgname/license + cd vdpauinfo-${pkgver} + + make DESTDIR="${pkgdir}" install + install -D -m644 ../vdpauinfo-${pkgver}/COPYING "$pkgdir"/usr/share/licenses/vdpauinfo/license } + +# vim: ts=2 sw=2 et:
