blob: 54a0c38c3470f20b9ffdaa9aeaa36ab2151f56bf (
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: Andrei Embarque <andreijosee@zoho.com>
# Submitter: Ali Rohman <laymoth@pm.me>
pkgname='hidamari'
pkgver=3.6
pkgrel=1
pkgdesc='Video wallpaper for Linux. Written in Python.'
arch=(any)
url='https://github.com/jeffshee/hidamari'
license=('GPL-3.0-only')
depends=('python-gobject' 'python-pillow' 'python-pydbus' 'python-vlc' 'yt-dlp' 'dconf' 'python-requests' 'gnome-desktop-4' 'libwnck3' 'python-setproctitle' 'mesa-utils' 'webkit2gtk' 'xdg-user-dirs' 'vdpauinfo' 'libappindicator-gtk3' 'webkit2gtk-4.1')
makedepends=('git' 'meson' 'gtk-update-icon-cache' 'desktop-file-utils')
source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('fbfa754db13bb5bad6cecce07375bede047b3cacbc38c503ebe98e02ac418a81')
build() {
arch-meson "$pkgname-$pkgver" build
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|