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

libao: remove devel files (save space on ISO)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Feb 12 22:53:32 2014 +0100 (2014-02-12)
parents 5525af80165f
children 2c48d8b6a9ab
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-icon-theme"
4 VERSION="3.6.2"
5 CATEGORY="x-window"
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 cd $src
19 ./configure --prefix=/usr
20 make
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share $fs/usr/lib
28 cp -a $install/usr/share/icons $fs/usr/share
29 # pkgconfig in /usr/lib
30 cp -a $install/usr/share/pkgconfig $fs/usr/lib
31 }