blob: 12bf8a9ca26d328cd71d207b4c45792f9ed48f4d (
plain)
1 # Description: A collection of icons used as the basis for GNOME themes
2 # URL: http://www.gnome.org/
3 # Maintainer: Matt housh, jaeger at crux dot ninja
4 # Depends on: icon-naming-utils gtk3
5
6 name=gnome-icon-theme
7 version=3.12.0
8 release=1
9 source=(https://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --disable-nls
15 make
16 make DESTDIR=$PKG install
17 }
|