wok-next view gnome-icon-theme/receipt @ rev 19715

Fix building: pciutils, pcmanfm-legacy, arj
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 13 17:25:31 2017 +0300 (2017-05-13)
parents 40fab26c175d
children d43bf7aae921
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 WEB_SITE="http://www.gnome.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="icon-naming-utils intltool pkg-config gtk+"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
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 }