blob: 4104fb8bcdb85f1bb4d6be5dc8b28c5c53d09466 (
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
45
46
47
48
49
50
51
52
53
|
# Maintainer: Peter Nokes <peter@peternokes.co.uk>
pkgname=komikku
_author=valos
_gitname=Komikku
pkgver=1.41.0
pkgrel=1
pkgdesc='Online/Offline Manga reader based on GNOME | PinePhone/Librem 5 Support'
arch=(any)
url=https://codeberg.org/valos/Komikku
license=(GPL3)
depends=(
blueprint-compiler
libadwaita
python-beautifulsoup4
python-brotli
python-cairo
python-cffi
python-curl-cffi
python-cloudscraper
python-dateparser
python-emoji
python-gobject
python-keyring
python-lxml
python-magic
python-natsort
python-pillow
python-piexif
python-pure-protobuf
python-unidecode
python-wheel
python-rarfile
webkit2gtk
webkitgtk-6.0
python-colorthief
)
makedepends=(
gobject-introspection
meson
)
optdepends=('org.freedesktop.secrets: store passwords safely')
source=("https://codeberg.org/$_author/$_gitname/archive/v$pkgver.tar.gz")
sha256sums=('485c836037aef528f263a05412a0afd3f7fb0eef29a3d2e6ba088d52c7f0a5ad')
build() {
arch-meson $pkgname build
ninja -C build
}
package() {
DESTDIR="${pkgdir}" ninja -C build install
}
|