wok view hicolor-icon-theme/receipt @ rev 21806

Up vlc (3.0.6) again
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 19:53:59 2019 +0200 (2019-08-15)
parents e3f377fbc5f0
children 3cdc90c472a2
line source
1 # SliTaz package receipt.
3 PACKAGE="hicolor-icon-theme"
4 VERSION="0.17"
5 CATEGORY="misc"
6 SHORT_DESC="Icon theme that all icon themes automatically inherit from."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.freedesktop.org/wiki/Software/icon-theme/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://icon-theme.freedesktop.org/releases/$TARBALL"
14 HOST_ARCH="i486 arm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS &&
20 make -j 1 &&
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/icons/hicolor
29 cp $install/usr/share/icons/hicolor/index.theme \
30 $fs/usr/share/icons/hicolor
31 cp -a $install/usr/share/icons/hicolor/24x24 \
32 $fs/usr/share/icons/hicolor
34 sed -i 5i\ 'Inherits=SliTaz' $fs/usr/share/icons/hicolor/index.theme
35 }