wok view paper-gtk-theme/receipt @ rev 25601

Update some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 16 18:06:38 2023 +0000 (10 months ago)
parents 92be0e14703a
children
line source
1 # SliTaz package receipt.
3 PACKAGE="paper-gtk-theme"
4 VERSION="2.1.0"
5 CATEGORY="customization"
6 SHORT_DESC="Modern desktop theme suite."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://snwh.org/paper/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/snwh/$PACKAGE/archive/v$VERSION/$TARBALL"
14 HOST_ARCH="any"
16 DEPENDS="gtk2-engine-murrine"
17 BUILD_DEPENDS="autoconf automake"
19 # What is the latest version available today?
20 current_version()
21 {
22 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
23 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 chmod a+x autogen.sh
30 ./autogen.sh &&
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 }