blob: 6f4478bdbff078ef9ec446224d8cd0e78a555c76 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=devtoolbox
pkgver=1.2.5
pkgrel=1
pkgdesc="Development tools at your fingertips"
arch=('any')
url="https://github.com/aleiepure/devtoolbox"
license=(
'CC0-1.0'
'GPL-3.0-or-later'
'LGPL-3.0-or-later'
'MIT'
'Unlicense'
)
depends=(
'gcr-4'
'gtksourceview5'
'libadwaita'
'python-asn1crypto'
'python-croniter'
'python-cssbeautifier'
'python-daltonlens'
'python-dateutil'
'python-gobject'
'python-humanize'
'python-jsbeautifier'
'python-jsonschema'
'python-lxml'
'python-markdown2'
'python-numpy'
'python-pillow'
'python-pygments'
'python-pyjwt'
'python-python-crontab'
'python-python-lorem'
'python-pytz'
'python-qrcode'
'python-rcssmin'
'python-rjsmin'
'python-ruamel.yaml.string'
'python-sqlparse'
'python-textstat'
'python-tzlocal'
'python-uuid6'
'webkitgtk-6.0'
)
makedepends=(
'blueprint-compiler'
'git'
'meson'
)
source=("git+https://github.com/aleiepure/devtoolbox#tag=v$pkgver")
sha256sums=('b9e5a2ef6238c59e46f6233071e4dad6756f5ac72b64c5203f6ca843bd09f75d')
build() {
arch-meson "$pkgname" build
meson compile -C build
}
check() {
meson test -C build --no-rebuild --print-errorlogs || :
}
package() {
meson install -C build --no-rebuild --destdir "$pkgdir"
cd "$pkgname"
install -Dm644 LICENSES/MIT.txt -t "$pkgdir/usr/share/licenses/$pkgname/"
}
|