[arch-commits] Commit in vdpauinfo/repos (2 files)

Evangelos Foutras foutrelis at gemini.archlinux.org
Sun Mar 6 15:50:24 UTC 2022


    Date: Sunday, March 6, 2022 @ 15:50:24
  Author: foutrelis
Revision: 1142558

archrelease: copy trunk to community-staging-x86_64

Added:
  vdpauinfo/repos/community-staging-x86_64/
  vdpauinfo/repos/community-staging-x86_64/PKGBUILD
    (from rev 1142557, vdpauinfo/trunk/PKGBUILD)

----------+
 PKGBUILD |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

Copied: vdpauinfo/repos/community-staging-x86_64/PKGBUILD (from rev 1142557, vdpauinfo/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2022-03-06 15:50:24 UTC (rev 1142558)
@@ -0,0 +1,48 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Timothy Redaelli <timothy.redaelli at gmail.com>
+# Contributor: Aaron Plattner <aplattner at nvidia.com>
+# Contributor: Bart Verhoeven <bartverhoeven at live.com>
+
+pkgname=vdpauinfo
+pkgver=1.4
+pkgrel=2
+pkgdesc='Command line utility for querying the capabilities of a VDPAU device'
+arch=(x86_64)
+url=https://gitlab.freedesktop.org/vdpau/vdpauinfo
+license=(custom)
+depends=(
+  gcc-libs
+  libvdpau
+  libx11
+)
+makedepends=(git)
+source=(git+https://gitlab.freedesktop.org/vdpau/vdpauinfo.git#tag=3463ab40a89179e6e199575e8bee9c23ee027377)
+validpgpkeys=(BD68A042C603DDAD9AA354B0F56ACC8F09BA9635) # Aaron Plattner <aplattner at nvidia.com>
+sha256sums=(SKIP)
+
+pkgver() {
+  cd vdpauinfo
+
+  git describe --tags
+}
+
+prepare() {
+  cd vdpauinfo
+
+  autoreconf -fiv
+}
+
+build() {
+  cd vdpauinfo
+
+  ./configure \
+    --prefix=/usr
+  make
+}
+
+package() {
+  make DESTDIR="${pkgdir}" -C vdpauinfo install
+  install -Dm 644 vdpauinfo/COPYING -t "$pkgdir"/usr/share/licenses/vdpauinfo/
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list