blob: 784ae47a13994625ae27d3e782a84de24f33d49c (
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
|
#!/bin/mkpkg
# description: Freedesktop.org fallback icon theme (index.theme + directory skeleton)
# url: https://www.freedesktop.org/wiki/Software/icon-theme/
name=hicolor-icon-theme
version=0.18
release=1
depends=(gtk3)
makedeps=(meson)
source=(https://icon-theme.freedesktop.org/releases/hicolor-icon-theme-$version.tar.xz)
sha256sums=(
"db0e50a80aa3bf64bb45cbca5cf9f75efd9348cf2ac690b907435238c3cf81d7"
)
build() {
meson setup $name-$version build \
--prefix=/usr \
--buildtype=plain
meson compile -C build
DESTDIR=$PKG meson install -C build
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|