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

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
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 }