wok view adwaita-icon-theme/receipt @ rev 25793
reverted version 4.14.1 to 4.12.0 for xfconf packages
author | Hans-G?nter Theisgen |
---|---|
date | Wed Oct 23 15:16:12 2024 +0100 (3 months ago) |
parents | a273d5a1ae50 |
children |
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 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - $WEB_SITE/tags 2>/dev/null | \
22 sed '/alpha/d;/beta/d;/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./configure \
29 --prefix=/usr \
30 $CONFIGURE_ARGS &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cp -a $install/* $fs
39 rm -r $fs/usr/share/pkgconfig
40 }