wok-current view gtk-theme-greybird/receipt @ rev 25679
Patch ghostscript CVE-2023-36664
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Fri Mar 08 13:06:31 2024 +0000 (11 months ago) |
parents | 5ea0ce1cecc0 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="gtk-theme-greybird"
4 VERSION="1.6.2"
5 CATEGORY="customization"
6 SHORT_DESC="Greybird is GTK+2 and GTK+3 theme from the Shimmer Project"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2 CC-BY-SA-3"
9 WEB_SITE="https://github.com/shimmerproject/Greybird"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/shimmerproject/Greybird/archive/v$VERSION.tar.gz"
12 HOST_ARCH="any"
14 DEPENDS="gtk2-engine-murrine"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 patch -p1 -i $stuff/define-sizes.patch
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 T='/usr/share/themes/Greybird'
33 mkdir -p $fs/$T
34 cp -a \
35 $src/gtk-2.0 \
36 $src/gtk-3.0 \
37 $src/xfce-notify-4.0 \
38 $src/xfce-notify-4.0_bright \
39 $src/index.theme \
40 $fs/$T
41 }