summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ea36518bbeb20eba4472b671c5ce2689dc2f4c19 (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
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>

pkgname=pantheon-calculator-bzr
pkgver=r227
pkgrel=1
pkgdesc='The Pantheon Calculator'
arch=('i686' 'x86_64')
url='https://launchpad.net/pantheon-calculator'
license=('GPL3')
groups=('pantheon-unstable')
depends=('libgranite.so')
makedepends=('bzr' 'cmake' 'granite-bzr' 'intltool' 'vala')
provides=('pantheon-calculator')
conflicts=('pantheon-calculator')
source=('bzr+lp:pantheon-calculator')
sha256sums=('SKIP')

pkgver() {
  cd pantheon-calculator

  echo "r$(bzr revno)"
}

build() {
  cd pantheon-calculator

  if [[ -d build ]]; then
    rm -rf build
  fi
  mkdir build && cd build

  cmake .. \
    -DCMAKE_BUILD_TYPE='Release' \
    -DCMAKE_INSTALL_PREFIX='/usr' \
    -DGSETTINGS_COMPILE='OFF'
  make
}

package() {
  cd pantheon-calculator/build

  make DESTDIR="${pkgdir}" install
}

# vim: ts=2 sw=2 et: