core/xorg-xvinfo/PKGBUILD

28 lines
798 B
Bash
Raw Normal View History

# Maintainer: Drake Justice <djustice@chakraos.org>
pkgname=xorg-xvinfo
pkgver=1.1.2
pkgrel=1
pkgdesc="Prints out the capabilities of any video adaptors associated with the display that are accessible through the X-Video extension"
arch=('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)
sha256sums=('eed3d90ffd788ef728c4a5e7aa4bd86dc6bbcebac929caf7a0479cf8b53b50e3')
build() {
cd "${srcdir}/xvinfo-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/xvinfo-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
}