blob: 1206e1e588c6d0b766c5e9d3de27798350609942 (
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
|
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
pkgname=pantheon-photos-git
pkgver=8.0.0.r21.g742f6d1b
pkgrel=1
pkgdesc='The Pantheon Photos Manager'
arch=('x86_64')
url='https://github.com/elementary/photos'
license=('LGPL2.1')
groups=('pantheon-unstable')
depends=('cairo' 'gdk-pixbuf2' 'geocode-glib' 'glib2' 'gst-plugins-base-libs'
'gstreamer' 'gtk3' 'json-glib' 'libexif' 'libgee' 'libgexiv2'
'libgphoto2' 'libraw' 'libsoup' 'libxml2' 'pango' 'rest' 'sqlite'
'webkit2gtk'
'libgranite.so' 'libgudev-1.0.so')
makedepends=('git' 'granite' 'intltool' 'meson' 'vala')
provides=('pantheon-photos')
conflicts=('pantheon-photos')
source=('pantheon-photos::git+https://github.com/elementary/photos.git')
sha256sums=('SKIP')
pkgver() {
cd pantheon-photos
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
arch-meson pantheon-photos build \
-Dlibunity='false'
ninja -C build
}
package() {
DESTDIR="${pkgdir}" ninja -C build install
}
# vim: ts=2 sw=2 et:
|