summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0a69f503912b3d36e48cfa728ad8e76998fd3d71 (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
# Maintainer: Thorben Günther <echo YWRtaW5AeGVucm94Lm5ldAo= | base64 -d>
# Contributor: Drew DeVault <sir@cmpwn.com>
pkgname=mako-git
_pkgname=mako
pkgver=v1.4.1.r61.gdbd9c2b
pkgrel=1
license=('MIT')
pkgdesc='Lightweight notification daemon for Wayland'
makedepends=("meson" "scdoc" "systemd" "wayland-protocols" "git")
depends=(
    "gdk-pixbuf2"
    "pango"
    "cairo"
    "systemd-libs"
    "wayland"
)
optdepends=("jq: support for 'makoctl menu'")
arch=("x86_64")
url='http://mako-project.org'
source=(
    "${pkgname%-*}::git+https://github.com/emersion/mako.git"
    "mako.service"
    "0001-Fix-DBus-service.patch"
)
sha1sums=('SKIP'
          '688484d6bf677e6f6014c9311ff40fabae748bcc'
          '64b8a3446fa1ddc3d876629a0c4a3d1d6bb0b20f')
provides=('mako')
conflicts=('mako')

pkgver() {
    cd "$_pkgname"
    (
        set -o pipefail
        git describe --long 2> /dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
            printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
    )
}

prepare() {
    patch -Np1 -i "$srcdir/0001-Fix-DBus-service.patch" -d "$_pkgname"
}

build() {
    cd "$_pkgname"
    arch-meson -Dzsh-completions=true -Dsd-bus-provider=libsystemd build
    ninja -C build
}

package() {
    cd "$_pkgname"
    DESTDIR="$pkgdir/" ninja -C build install
    install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"${pkgname%-*}"/LICENSE
    install -Dm0644 ../mako.service -t "$pkgdir"/usr/lib/systemd/user/
}