blob: 6f432a38477d70a9f6dd15e772548c1f61607ecc (
plain)
1 # Description: A shim to maintain compatibility between current desktop icon themes and the icon naming specification
2 # URL: http://tango.freedesktop.org/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: p5-xml-simple
5
6 name=icon-naming-utils
7 version=0.8.90
8 release=1
9 source=(http://tango.freedesktop.org/releases/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --libexecdir=/usr/lib/$name \
15 --disable-nls
16 make
17 make DESTDIR=$PKG install
18 }
|