wok view xpenguins_themes/receipt @ rev 25024

Update some wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 18 20:10:17 2022 +0000 (23 months ago)
parents d765616e1f3d
children
line source
1 # SliTaz package receipt.
3 PACKAGE="xpenguins_themes"
4 VERSION="1.0"
5 CATEGORY="misc"
6 SHORT_DESC="Additional themes for XPenguins"
7 MAINTAINER="Lucas Levrel <llev@slitaz.org>"
8 LICENSE="unclear"
9 WEB_SITE="https://ratrabbit.nl/ratrabbit/software/xpenguins/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://ftp.jaist.ac.jp/pub/Linux/Gentoo/distfiles/$TARBALL"
13 DEPENDS="xpenguins"
14 BUILD_DEPENDS=""
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - ${WGET_URL%/*} 2>/dev/null | \
20 sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 true
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/xpenguins/themes
33 cp -a $src/* $fs/usr/share/xpenguins/themes
34 }