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

updated mcabber (0.9.10 -> 1.1.2)
author Hans-G?nter Theisgen
date Fri Apr 01 07:52:41 2022 +0100 (2022-04-01)
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 }