diff options
author | root <root@rshg054.dnsready.net> | 2012-02-26 23:15:00 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-26 23:15:00 +0000 |
commit | f6a79a3f5989efc8db63af942851c56f0c462bb1 (patch) | |
tree | 08bddecba9bbd4fc2c2075bfa2c514f710fcd351 /extra/xorg-xvinfo | |
parent | e4a5730eb358cb0d78bc022204ddccac068c2bf2 (diff) |
Sun Feb 26 23:15:00 UTC 2012
Diffstat (limited to 'extra/xorg-xvinfo')
-rw-r--r-- | extra/xorg-xvinfo/PKGBUILD | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/extra/xorg-xvinfo/PKGBUILD b/extra/xorg-xvinfo/PKGBUILD index f125fa32d..84f55418d 100644 --- a/extra/xorg-xvinfo/PKGBUILD +++ b/extra/xorg-xvinfo/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 113836 2011-03-10 15:58:02Z jgc $ +# $Id: PKGBUILD 151163 2012-02-25 06:42:49Z allan $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=xorg-xvinfo pkgver=1.1.1 -pkgrel=2 +pkgrel=3 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) +arch=('i686' 'x86_64') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxv') @@ -18,7 +18,10 @@ build() { cd "${srcdir}/xvinfo-${pkgver}" ./configure --prefix=/usr make +} + +package() { + cd "${srcdir}/xvinfo-${pkgver}" make DESTDIR="${pkgdir}" install - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" } |