blob: 47ccbe4ce71db513dfef79948efa4142825c3ee0 (
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
|
# Maintainer: Drew DeVault <sir@cmpwn.com>
pkgname=mako
pkgver=1.4.1
pkgrel=1
pkgdesc="A lightweight notification daemon for Wayland"
url="https://wayland.emersion.fr/mako/"
arch="all"
license="MIT"
options="!check" # contains no test suite
makedepends="
cairo-dev
elogind-dev
gdk-pixbuf-dev
glib-dev
meson
ninja
pango-dev
scdoc
wayland-dev
wayland-protocols
"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/emersion/mako/archive/v$pkgver.tar.gz"
build() {
meson \
--prefix=/usr \
--libdir=/usr/lib \
--buildtype=plain \
-Dicons=enabled \
. build
ninja -C build
}
package() {
DESTDIR="$pkgdir" ninja -C build install
}
sha512sums="25b0f59645c1815d8bdba42cedd6f56163ff663cd801a534c4c725c99e9a8cc28aef1d2c899d30cca06f0c6ddfa4a8e6efa01e5e98091347bcfc80d596f16d43 mako-1.4.1.tar.gz"
|