summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 795632a4f6d8ffd23d03da9ea189f869e1640610 (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-screenshot-git
pkgver=1.7.1.r85.g1d72fc1
pkgrel=1
pkgdesc='The Pantheon Screenshot Tool'
arch=('x86_64')
url='https://github.com/elementary/screenshot-tool'
license=('GPL3')
groups=('pantheon-unstable')
depends=('cairo' 'gdk-pixbuf2' 'glib2' 'glibc' 
         'gtk3' 'libcanberra' 'libhandy1'
         'libgranite.so')
makedepends=('git' 'granite-git' 'intltool' 'meson' 'vala')
provides=('pantheon-screenshot')
conflicts=('pantheon-screenshot')
source=("pantheon-screenshot::git+https://github.com/elementary/screenshot-tool.git"
        "0001-support-libhandy1.patch")
sha256sums=('SKIP'
            'b300a47911342fbe1cf22ccae0287b53ca584bff873d3491ef480687d8d9933a')

pkgver() {
  cd pantheon-screenshot

  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

prepare() {
  sed 's/extra/io.elementary.screenshot-tool.extra/' -i pantheon-screenshot/po/extra/meson.build

   cd pantheon-screenshot
   patch -Np1 -i ../0001-support-libhandy1.patch
}

build() {
  arch-meson pantheon-screenshot build
  ninja -C build
}

package() {

  DESTDIR="${pkgdir}" ninja -C build install
}

# vim: ts=2 sw=2 et: