summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 953e636be9f468a598b1c032b5f7be7126adf0aa (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
# Maintainer: Philip Goto <philip.goto@gmail.com>

pkgname=phosh
pkgver=0.3.0
pkgrel=1
pkgdesc="A pure Wayland shell prototype for GNOME on mobile devices"
url="https://source.puri.sm/Librem5/phosh"
license=("GPL3")
arch=(i686 x86_64 armv7h aarch64)
depends=('feedbackd'
         'gcr'
         'libhandy'
         'libnm'
         'libpulse'
         'libsecret'
         'phoc'
         'upower')
makedepends=('ctags'
             'git'
             'meson'
             'vala')
source=("git+https://source.puri.sm/Librem5/phosh.git#tag=v${pkgver}"
        "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git")
sha256sums=('SKIP'
            'SKIP')

prepare() {
    cd phosh

    git submodule init
    git config --local submodule.subprojects/gvc.url "$srcdir/libgnome-volume-control"
    git submodule update
}

build() {
    arch-meson phosh build -Dtests=false
    ninja -C build
}

# check() {
#     meson test -C build --print-errorlogs
# }

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