summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6c2fef9003a013c64c5116ee74d6aaefdb0a5443 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Maintainer: Lukas Sabota <lukas@lwsabota.com>
# Contributor: Lukas Sabota <lukas@lwsabota.com>
pkgname=qjoypad-panzi-git
pkgver=v4.2.1.r1.gf9816ca
pkgrel=1
pkgdesc="Panzi's fork of QJoyPad with some small additional features and some bug/memory leak fixes."
arch=('i686' 'x86_64')
url="https://github.com/panzi/qjoypad"
license=('GPL2')
depends=('qt4' 'libxt' 'libsystemd')
makedepends=('git')
provides=('qjoypad')
conflicts=('qjoypad')

_gitroot=https://github.com/panzi/qjoypad.git
_gitname=qjoypad

prepare() {
  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"
  fi

  pkgver=pkgver

  msg "GIT checkout done or server timeout"
}

build() {
  cd "$srcdir"
  msg "Starting build..."

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

  #
  # BUILD HERE
  #
  mkdir build
  cd build
  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
  make
}

package() {
  cd "$srcdir/$_gitname-build/build"
  make DESTDIR="$pkgdir/" install
}

pkgver() {
  cd "$srcdir/$_gitname-build"
  git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

# vim:set ts=2 sw=2 et: