summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: aa47cefd015790227013e0c1b9e60a1d045a26ff (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
# Based on a PKGBUILD by Maxime Gauduin <alucryd@archlinux.org>

pkgname=screenshot-tool-bzr
pkgver=r214
pkgrel=1
pkgdesc='Pantheon screenshot tool'
arch=('i686' 'x86_64')
url='https://launchpad.net/screenshot-tool'
license=('GPL3')
groups=('pantheon-unstable')
depends=('gdk-pixbuf2' 'glib2' 'glibc' 'gtk3' 'libgee' 'wayland'
         'libgranite.so')
makedepends=('bzr' 'cmake' 'vala')
provides=('screenshot-tool')
conflicts=('screenshot-tool')
install='screenshot-tool.install'
source=('bzr+lp:screenshot-tool')
sha256sums=('SKIP')

pkgver() {
  cd screenshot-tool

  echo "r$(bzr revno)"
}

build() {
  cd screenshot-tool

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

  cmake .. \
    -DCMAKE_BUILD_TYPE='Release' \
    -DCMAKE_INSTALL_PREFIX='/usr' \
    -DCMAKE_INSTALL_LIBDIR='/usr/lib' \
    -DGSETTINGS_COMPILE='FALSE' \
    -DUSE_UNITY='FALSE'
  make
}

package() {
  cd screenshot-tool/build

  make DESTDIR="${pkgdir}" install
}

# vim: ts=2 sw=2 et: