blob: 86951cccd2493ca47d48d5afd3a3c203c6e831f5 (
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
63
64
65
66
67
68
69
70
71
72
73
|
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=nautilus
pkgver=42.2
pkgrel=0
pkgdesc="GNOME file manager"
url="https://wiki.gnome.org/Apps/Nautilus"
# s390x blocked by mozjs91 -> tracker-miners
arch="all !s390x"
license="GPL-2.0-or-later"
depends="
gsettings-desktop-schemas
tracker-miners
"
depends_dev="
gnome-autoar-dev
gnome-desktop-dev
"
makedepends="
$depends_dev
docbook-xml
docbook-xsl
gexiv2-dev
gst-plugins-base-dev
intltool
itstool
jpeg-dev
libexif-dev
libhandy1-dev
libportal-dev
librsvg-dev
libseccomp-dev
libxml2-dev
libxml2-utils
libxslt
meson
tiff-dev
tracker-dev
tracker-testutils
"
checkdepends="desktop-file-utils appstream-glib"
subpackages="$pkgname-dev $pkgname-lang"
source="https://download.gnome.org/sources/nautilus/${pkgver%.*}/nautilus-$pkgver.tar.xz
meson-fix-mixed-list.patch
"
if [ "$CARCH" = "armhf" ]; then
options="!check" # one test fails on armhf
fi
# secfixes:
# 3.32.1-r0:
# - CVE-2019-11461
build() {
abuild-meson \
-Dtests=headless \
. output
meson compile ${JOBS:+-j ${JOBS}} -C output
}
check() {
meson test --no-rebuild --print-errorlogs -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
2b3ba2990b00bbc3abf771b83b9b0a7c1a8b107b1b4955a45879f7d28add713d326bbe84d70056058073edfc3c7b7891547af77b8a34f94fe1b9ca047c76e9c9 nautilus-42.2.tar.xz
d08c6833343b8ed89515d12063938e7236cb37d15b7115de50a43bd9a049a09a5a2fc907f52675ba85abecef9bae82c7848249872908eeb39c5c49a744cbf9d1 meson-fix-mixed-list.patch
"
|