blob: 483f2748c93fe32647189c6cdb10f4905a0175c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $Id: PKGBUILD 113816 2011-03-10 15:50:41Z jgc $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=xorg-xrandr
pkgver=1.3.4
pkgrel=2
pkgdesc="Primitive command line interface to RandR extension"
arch=(i686 x86_64)
url="http://xorg.freedesktop.org/"
license=('custom')
depends=('libxrandr' 'libx11')
makedepends=('xorg-util-macros')
groups=('xorg-apps' 'xorg')
source=(http://xorg.freedesktop.org/archive/individual/app/xrandr-${pkgver}.tar.bz2)
sha1sums=('637949501b8a45d32d9cab809e8822ee45b69414')
build() {
cd "${srcdir}/xrandr-${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}/"
rm -f "${pkgdir}/usr/bin/xkeystone"
}
|