blob: 47f45d1aa50f93b4db396290583d9f06523804f4 (
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
|
# Contributor: knuxify <knuxify@gmail.com>
# Maintainer: knuxify <knuxify@gmail.com>
pkgname=adw-gtk3
pkgver=4.7
pkgrel=0
pkgdesc="The theme from libadwaita ported to GTK-3"
url="https://github.com/lassekongo83/adw-gtk3"
arch="noarch"
license="LGPL-2.1-or-later"
makedepends="meson sassc"
source="https://github.com/lassekongo83/adw-gtk3/archive/refs/tags/v$pkgver/adw-gtk3-$pkgver.tar.gz"
options="!check" # no test suite
build() {
abuild-meson \
. output
meson compile -C output
}
check() {
meson test --no-rebuild --print-errorlogs -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
dd0a8e0b423b42fce7669d8188d392d0bcd25ae5549194b186b346a7706200cf435d473eafc6c399fda20930a07fed576d5aced75023f6ee42025593e83717a7 adw-gtk3-4.7.tar.gz
"
|