blob: 6865176f3af5386f5fec42bd201861eb9f28c614 (
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
|
# Maintainer: Husam Bilal <husam212@gmail.com>
# Contributer: Manuel <manuel.bua@gmail.com>
pkgname=komorebi
pkgver=2.2.1
pkgrel=1
pkgdesc="A beautiful and customizable wallpaper manager for Linux "
url="https://github.com/Komorebi-Fork/komorebi"
depends=("libgee" "clutter-gtk" "clutter-gst" "webkit2gtk")
optdepends=("gst-libav: full video wallpaper support"
"gstreamer-vaapi: hardware-accelerated video decoding through VAAPI"
"gst-plugins-bad: hardware-accelerated video decoding through VDPAU")
makedepends=("git" "meson" "vala")
install=komorebi.install
license=("GPL3")
arch=("x86_64")
sha256sums=("4074751825cf031cca63c647372494446dab2492e8311ff439785527b3518c5b")
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Komorebi-Fork/${pkgname}/archive/v${pkgver}.tar.gz")
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
arch-meson build
meson compile -C build
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
DESTDIR="${pkgdir}" meson install -C build
}
|