X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-wm0-f67.google.com (mail-wm0-f67.google.com [74.125.82.67]) by lists.alpinelinux.org (Postfix) with ESMTP id F343C5C4ED7 for ; Thu, 29 Jun 2017 20:37:27 +0000 (GMT) Received: by mail-wm0-f67.google.com with SMTP id j85so4629631wmj.0 for ; Thu, 29 Jun 2017 13:37:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=GjgpnTMzZOf4JcrdsDJfsXuKYhCQ5jAxV9ynR/DDUXQ=; b=qHqhoz27sV7P6cH5PBkb4Q9S5BTYVDSFsUYgH6ducVQ03oQ41gskZhPNS+bz7mvxTY nOx/IbkmCQ8OnHBaG+X56Q0p6LXDz50+KNrFHhlVtjzMWTq1SkHf4dSN+GF0hoI+8i1M U9Euss7xOFXq+yRUiv5Ci/4eJqARmgNAjD+6SR41h6Yc3sT7iYnIasVqTWCWsAzt5lwG x4RMVfISlTKpiD8KBrplGFJ4CYu0q4OlKLeCjnD3yHG+wCP5Fl5lBIz/IeoazWIhpUVL N9L7tEGX0Y/EP3neHyHE15ETKakiu6LKZm1rKv0bha8XypSuLHlkh34x1moDV8O0u2IM hkzQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=GjgpnTMzZOf4JcrdsDJfsXuKYhCQ5jAxV9ynR/DDUXQ=; b=llCywyFjGlYj67vMDLXFeeWXaBbp+rs9Hujn6D/taMImto5dF4x4RLuEPF5iNOR9hw /gdxuEbti+ExAZyyd8Kvgw8PFSul30ODsV7Kh3YCov6cGGREuK3CHF1Jnx+E4GUjtxjg R4AhiCSqszV9WAxRTpEubtKPDFTGmx5yuW7WF5HEnRtvJgarhSgo7yE6EoXgbj0AC8Ho QZLeeo6ztaFWJTZVmtLY+xKEjSgBmc/BNu+WXmwKx/A8AhvVx6xsPGtRb7hDEvXIA4ZT 1WkMCTDDVUDrPhqpUYAsj4HQoFCSP7WPPfStRG9XdOX1R9ppFJn334AfgxY0eAg0Rh5+ heyA== X-Gm-Message-State: AKS2vOySaNowtUfN+U0MhvOZDBwsxIfMub+Oaezotr8E/BBiGVBSDUU2 JChI8ebifePIdjPN X-Received: by 10.28.170.8 with SMTP id t8mr4937366wme.111.1498768647038; Thu, 29 Jun 2017 13:37:27 -0700 (PDT) Received: from localhost.localdomain ([31.223.28.112]) by smtp.gmail.com with ESMTPSA id p87sm14433138wma.2.2017.06.29.13.37.24 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 29 Jun 2017 13:37:25 -0700 (PDT) From: Taner Tas To: alpine-aports@lists.alpinelinux.org Cc: Taner Tas Subject: [alpine-aports] [PATCH] testing/vdpauinfo: new aport Date: Thu, 29 Jun 2017 20:37:13 +0000 Message-Id: <20170629203713.5628-1-taner76@gmail.com> X-Mailer: git-send-email 2.13.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://cgit.freedesktop.org/vdpau/vdpauinfo Command line utility for querying the capabilities of a VDPAU device. --- testing/vdpauinfo/APKBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 testing/vdpauinfo/APKBUILD diff --git a/testing/vdpauinfo/APKBUILD b/testing/vdpauinfo/APKBUILD new file mode 100644 index 00000000..58930003 --- /dev/null +++ b/testing/vdpauinfo/APKBUILD @@ -0,0 +1,35 @@ +# Maintainer: Taner Tas +pkgname=vdpauinfo +pkgver="1.0" +pkgrel=0 +pkgdesc="Command line utility for querying the capabilities of a VDPAU device." +url="https://cgit.freedesktop.org/vdpau/vdpauinfo" +arch="all" +license="custom" +makedepends="libx11-dev libvdpau-dev" +source="https://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz" +options="!check" + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --disable-nls + make +} + +check(){ + cd "$builddir" + make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="54c177424bdae65374a13c0546ecda0e25e7357f9e779fb48dc018a9c11593039f87715ea18b320684dca22455df9b41a4eea6b0f977956efb6ab85b8b99297e vdpauinfo-1.0.tar.gz" -- 2.13.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---