blob: 430388b836e746ae3180289b987fecc5cd6de634 (
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: Mark Wagie <mark dot wagie at proton dot me>
pkgname=cobang
pkgver=0.14.1
pkgrel=1
pkgdesc="A QR code scanner desktop app for Linux"
arch=('any')
url="https://github.com/hongquan/CoBang"
license=('GPL-3.0-or-later')
depends=(
'gst-plugin-gtk'
'gst-plugins-good'
'gst-python'
'gtk3'
'libhandy'
'libndp'
'libnm'
'libpwquality'
'librsvg'
'polkit'
'python-gobject'
'python-kiss-headers'
'python-logbook'
'python-pillow'
'python-requests'
'python-single-version'
'zbar'
)
makedepends=('gobject-introspection' 'meson')
checkdepends=('appstream')
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('673ec680fc23b7a22a7dab29729f383b8e5fb47b8d445867957a3bdb1dea9fc5')
build() {
arch-meson "CoBang-$pkgver" build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "$pkgdir"
}
|