summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9d2088fb83a3ca2e55ca4d261b5da67338348797 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Maintainer: Thomas Jost <schnouki@schnouki.net>
pkgname=smartbg-git
pkgver=20101203
pkgrel=1
pkgdesc="A smart wallpaper setter for multi-head X displays"
arch=(any)
url="http://code.schnouki.net/p/smartbg/"
license=('custom:WTFPL')
depends=('pygtk')
makedepends=('git')
source=()
md5sums=()
sha1sums=()

_gitroot="git://code.schnouki.net/smartbg.git"
_gitname="smartbg"

build() {
  cd "$srcdir"
  msg "Connecting to GIT server...."

  if [ -d $_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
  else
    git clone $_gitroot $_gitname
  fi

  msg "GIT checkout done or server timeout"
  msg "Starting make..."

  rm -rf "$srcdir/$_gitname-build"
  git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
  cd "$srcdir/$_gitname-build"

  #
  # BUILD HERE
  #

  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING || return 1
  install -Dm755 smartbg $pkgdir/usr/bin/smartbg
}