summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cb4b16ec81d7eb86128cd2d0a97045b7acd8052f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: lmartinez-mirror
pkgname=fnott
pkgver=1.0.1
pkgrel=1
pkgdesc="Keyboard driven and lightweight Wayland notification daemon"
arch=('x86_64')
url="https://codeberg.org/dnkl/fnott"
license=('MIT')
depends=('dbus' 'fontconfig' 'freetype2' 'pixman' 'libpng' 'wayland' 'wlroots' 'fcft')
makedepends=('git' 'meson' 'ninja' 'scdoc' 'wayland-protocols' 'tllist>=1.0.1')
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
sha512sums=('5f8c3ba29af792875b0ac2e585cfebd453c92be064711b9d82a5cf6249fccda2cdeacc2a96b0b8b4a485590f10255d3e257339d85c99cccc3158ebc516959f22')

build() {
	cd "$pkgname"
	meson --prefix=/usr --buildtype=release build
	ninja -C build
}

package() {
	cd "$pkgname"
	DESTDIR="$pkgdir/" ninja -C build install
}