blob: fdc6eef39c7034e99eb97fb5a40be0f3cd599f87 (
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
62
|
# Maintainer: Pellegrino Prevete (tallero) <pellegrinoprevete@gmail.com>
_pkgname="gnome-maps"
pkgname="${_pkgname}-git"
pkgver=44.0+90+g4f3f61b8
pkgrel=1
pkgdesc="A simple GNOME 3 maps application"
url="https://wiki.gnome.org/Apps/Maps"
arch=(
x86_64
i686
pentium4
aarch64
armv7h
)
license=(GPL)
depends=(
geoclue
geocode-glib-2
gjs
gtk4
libadwaita
libgweather-4
librest
libshumate
libxml2
)
makedepends=(
git
gobject-introspection
meson
yelp-tools
)
provides=("${_pkgname}")
conflicts=("${_pkgname}")
groups=("gnome" "gnome-git")
source=("git+https://gitlab.gnome.org/GNOME/${_pkgname}.git")
sha256sums=('SKIP')
pkgver() {
cd "${_pkgname}"
git describe --tags | sed 's/^v//;s/-/+/g'
}
prepare() {
cd "${_pkgname}"
}
build() {
arch-meson "${_pkgname}" build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "${pkgdir}"
}
# vim:set sw=2 sts=-1 et:
|