summaryrefslogtreecommitdiff
path: root/repo/x11/hicolor-icon-theme.xibuild
blob: 3d51994808e64e2c7826d1e5aad8489d068dd453 (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
#!/bin/sh

NAME="hicolor-icon-theme"
DESC="Freedesktop.org Hicolor icon theme"

MAKEDEPS="make "
DEPS="musl "

PKG_VER=0.17
SOURCE="https://icon-theme.freedesktop.org/releases/hicolor-icon-theme-$PKG_VER.tar.xz"

build () {
    ./configure \
        --prefix=/usr
    make
}

package () {
    make DESTDIR=$PKG_DEST install
}

postinstall () {
    gtk-update-icon-cache /usr/share/icons/hicolor/
}