diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/xorg-xvinfo |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/xorg-xvinfo')
-rw-r--r-- | extra/xorg-xvinfo/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/extra/xorg-xvinfo/PKGBUILD b/extra/xorg-xvinfo/PKGBUILD new file mode 100644 index 000000000..f125fa32d --- /dev/null +++ b/extra/xorg-xvinfo/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 113836 2011-03-10 15:58:02Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=xorg-xvinfo +pkgver=1.1.1 +pkgrel=2 +pkgdesc="Prints out the capabilities of any video adaptors associated with the display that are accessible through the X-Video extension" +arch=(i686 x86_64) +url="http://xorg.freedesktop.org/" +license=('custom') +depends=('libx11' 'libxv') +makedepends=('xorg-util-macros') +groups=('xorg-apps' 'xorg') +source=(http://xorg.freedesktop.org/archive/individual/app/xvinfo-${pkgver}.tar.bz2) +sha1sums=('dc326464748fa608da50386112a89024804c1910') + +build() { + cd "${srcdir}/xvinfo-${pkgver}" + ./configure --prefix=/usr + make + make DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +} |