wok view adwaita-icon-theme/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 6831608a1b2a
children a66f312c374b
line source
1 # SliTaz package receipt.
3 PACKAGE="adwaita-icon-theme"
4 VERSION="41.0"
5 SERIES="${VERSION%%.*}" # first two numbers from version
6 CATEGORY="customization"
7 SHORT_DESC="A collection of icons used at the basis for GNOME themes."
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="LGPL3 CC-BY-SA-3"
10 WEB_SITE="https://github.com/GNOME/adwaita-icon-theme"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNOME_MIRROR/$PACKAGE/$SERIES/$TARBALL"
15 DEPENDS=""
16 BUILD_DEPENDS=""
18 current_version()
19 {
20 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
21 sed "/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./configure \
28 --prefix=/usr \
29 $CONFIGURE_ARGS &&
30 make &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 cp -a $install/* $fs
38 rm -r $fs/usr/share/pkgconfig
39 }