blob: 8c316675971bb80fc008978a44ed7c19a83dd34f (
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
|
# Maintainer: Philip Goto <philip.goto@gmail.com>
pkgname=adwaita-icon-theme-git
pkgver=41.0.r150.gace47b4dd
pkgrel=1
pkgdesc='GNOME standard icons'
arch=(any)
url='https://gitlab.gnome.org/GNOME/adwaita-icon-theme'
license=(LGPL3 CCPL:by-sa)
depends=(hicolor-icon-theme gtk-update-icon-cache librsvg)
makedepends=(git gtk3)
provides=(adwaita-icon-theme)
conflicts=(adwaita-icon-theme)
source=("git+${url}.git")
b2sums=(SKIP)
pkgver() {
cd adwaita-icon-theme
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd adwaita-icon-theme
# Revert settings icons removal to keep compatibility with GNOME 41
git revert -n 1b528b4c1b876381e2a8274cb87408ab4860a9c1 || true
git checkout master -- src/symbolic/core.svg
autoreconf -fvi
}
build() {
cd adwaita-icon-theme
./configure --prefix=/usr
make
}
check() {
cd adwaita-icon-theme
make check
}
package() {
cd adwaita-icon-theme
make DESTDIR="$pkgdir" install
}
|