blob: ab58c5b4283639f03d3fab7efb487d378e39f5af (
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
|
# Maintainer: kezuwoo <kezu15@proton.me>
pkgname=kitsune
pkgver=0.8.5
pkgrel=1
pkgdesc="AniLiberty player"
arch=('any')
url="https://altlinux.space/armatik/Kitsune"
license=('GPL-3.0-or-later')
depends=(
'python'
'python-gobject'
'python-cairo'
'libadwaita'
'gtk4'
'gstreamer'
'gst-plugins-base'
'gst-plugins-good'
'gst-plugins-bad'
'gst-plugin-gtk4'
'python-requests'
)
makedepends=('meson' 'ninja' 'git' 'blueprint-compiler')
source=("git+https://altlinux.space/armatik/Kitsune.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/Kitsune"
git describe --tags --abbrev=0 | sed 's/^v//'
}
build() {
cd "$srcdir/Kitsune"
meson setup build --prefix=/usr
meson compile -C build
}
package() {
cd "$srcdir/Kitsune"
DESTDIR="$pkgdir" meson install -C build
}
|