summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 27c654acb9230fb0461dd279597f05c3d07c8897 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Maintainer: Thomas Booker <tw.booker@outlook.com>
# Contributor: Philip Goto <philip.goto@gmail.com>

pkgname=phosh-git
pkgver=0.38.0.r75.g0155a295
pkgrel=1
pkgdesc='A pure Wayland shell prototype for GNOME on mobile devices'
arch=(x86_64 aarch64 armv7h)
url='https://gitlab.gnome.org/World/Phosh/phosh'
license=(GPL3)
depends=(
	gtk3
	libhandy
	gnome-desktop
	gnome-session
	upower
	libpulse
	gcr
	libnm
	evolution-data-server
	phoc
	gnome-shell
	callaudiod
	polkit
	libadwaita
	evince

	libical
	libedataserverui4
	squeekboard
	fribidi
	wayland
	libsecret
)
makedepends=(
	meson
	git
	wayland-protocols
	python-docutils
	python-packaging
	feedbackd
)
checkdepends=(
	xorg-server-xvfb
	xorg-xauth
)
optdepends=(
	'iio-sensor-proxy: accelerometer and other sensors'
	'feedbackd: haptic/visual/audio feedback'
	'xdg-desktop-portal-gtk: for screenshot support'
	'xdg-desktop-portal-wlr: for screencasts support'
)

provides=(phosh)
conflicts=(phosh)
source=(
	"git+${url}.git"
	"pam_phosh"
)
sha256sums=(
	'SKIP'
	'b7793f80c533e84ad8adfe8bb46c69f107575e724aa9b53b41f370baa37e4fd5'
)

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

prepare() {
	cd phosh
	git submodule update --init
}

build() {
	# If we don't set `libexecdir` then meson will try and place the phosh bin in /lib/phosh and collide with the dir so we put it in /lib/phosh/phosh
	arch-meson --libexecdir="/usr/lib/phosh" \
	-D tests=true \
	-D phoc_tests=disabled \
	-D man=true -D gtk_doc=false \
	-D callui-i18n=true \
	-D lockscreen-plugins=true \
	-D systemd=true \
	phosh _build 
	meson compile -C _build
}

check() {
	xvfb-run meson test --no-suite screenshots -C _build
}

package() {
	DESTDIR="${pkgdir}" meson install -C _build

	# make squeekboard the default keyboard 
	mkdir -p "$pkgdir"/usr/share/applications
	ln -s sm.puri.Squeekboard.desktop "$pkgdir"/usr/share/applications/sm.puri.OSK0.desktop


	install -Dm644 "$srcdir"/pam_phosh \
		"$pkgdir"/etc/pam.d/phosh
}