wok view gnome-icon-theme/receipt @ rev 19479

paper-icon-theme: update from git, make package a way smaller (remove HiDPI icons and shrink svg icons)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Nov 01 04:02:18 2016 +0200 (2016-11-01)
parents 2c48d8b6a9ab
children 86790a278e70
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-icon-theme"
4 VERSION="3.12.0"
5 CATEGORY="customization"
6 SHORT_DESC="Default GNOME icon theme."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.gnome.org/"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 BUILD_DEPENDS="icon-naming-utils intltool pkg-config gtk+"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --prefix=/usr
19 make
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share $fs/usr/lib
27 cp -a $install/usr/share/icons $fs/usr/share
28 # pkgconfig in /usr/lib
29 cp -a $install/usr/share/pkgconfig $fs/usr/lib
30 }