wok view gtk-engine-nodoka/receipt @ rev 25581

Update some web_site & wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 27 11:13:29 2023 +0000 (11 months ago)
parents 40fab26c175d
children 15da8bede304
line source
1 # SliTaz package receipt.
3 PACKAGE="gtk-engine-nodoka"
4 VERSION="0.7.5"
5 SOURCE="gtk-nodoka-engine"
6 CATEGORY="customization"
7 SHORT_DESC="Light and modern GTK theme engine."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://fedorahosted.org/nodoka/"
12 WGET_URL="https://fedorahosted.org/released/nodoka/$TARBALL"
14 DEPENDS="gtk+"
15 BUILD_DEPENDS="gtk+-dev wget"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - https://pagure.io/nodoka-theme/releases 2>/dev/null | \
21 sed '/tar.gz/!d;s|.*engine-||;s|.tar.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./configure $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib/gtk-2.0/2.10.0/engines
35 cp $install/usr/lib/gtk-2.0/2.10.0/engines/*.so \
36 $fs/usr/lib/gtk-2.0/2.10.0/engines
37 cp -a $install/usr/share $fs/usr
38 }