summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b97f2ec3fc2b2dfacb18919fcbc95332e9efec67 (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
43
44
45
46
# Maintainer: Vincent Bernardoff <vbmithr@gmail.com>

pkgname=quarry-git
pkgver=20120330
pkgrel=1
pkgdesc="Quarry is a multi-purpose GUI for several board games, at present Go, Amazons and Othello."
url="http://gitorious.org/quarry"
depends=('librsvg>=2.5')
makedepends=('xmlto')
source=('quarry.cfg')
sha1sums=('9d6d07f955f642f7feb69b90c971da9229eb1e2c')
install="quarry.install"
arch=('i686' 'x86_64')
license=('GPL')

_gitroot="git://gitorious.org/quarry/quarry.git"
_gitname="quarry"

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"

  ./configure --prefix=/usr --disable-scrollkeeper-update
  make
  make html
}

package() {
  cd "$srcdir/$_gitname-build"
  make DESTDIR=$startdir/pkg install
  cp ../../quarry.cfg $startdir/pkg/usr/share/quarry
}