updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / autorandr-git / PKGBUILD
blob38d31086848ad8e1c7e0a1df75f71afa9d9d2ce5
1 # Maintainer: Ng Oon-Ee <ngoonee.talk@gmail.com>
2 # Contributor (auto-disper-git): Byron Clark <byron@theclarkfamily.name>
3 pkgname=autorandr-git
4 pkgver=20110325
5 pkgrel=1
6 pkgdesc="Auto-detect connected display hardware and load appropriate X11 setup using xrandr or disper. Formerly auto-disper."
7 url="http://github.com/wertarbyte/autorandr"
8 arch=('any')
9 license=('None')
10 optdepends=('disper')
11 conflicts=('auto-disper-git')
12 makdepends=('git')
14 _gitroot="http://github.com/wertarbyte/autorandr.git"
15 _gitname=autorandr
16          
17 build() {
18   cd $srcdir
19   
20   if [ -d $_gitname ]; then
21     cd $_gitname && git pull origin
22   else
23     git clone $_gitroot $_gitname
24   fi
26   install -D -m 0755 $srcdir/$_gitname/autorandr $pkgdir/usr/bin/autorandr
27   ln -s autorandr $pkgdir/usr/bin/auto-disper
29 # vim: set ft=sh ts=2 sw=2 et: