wok annotate rox-default-icons/receipt @ rev 25438

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 01 11:12:31 2022 +0000 (21 months ago)
parents 394b8ad81c95
children b0069c845544
rev   line source
sygne@997 1 # SliTaz package receipt.
sygne@997 2
sygne@997 3 PACKAGE="rox-default-icons"
Hans-G?nter@21845 4 VERSION="2.11"
sygne@997 5 CATEGORY="misc"
sygne@997 6 SHORT_DESC="default icons for rox-filer."
sygne@997 7 MAINTAINER="sygne@ombres.eu"
pascal@15600 8 LICENSE="GPL2"
Hans-G?nter@21845 9 WEB_SITE="http://rox.sourceforge.net/desktop/ROX-Filer"
Hans-G?nter@21845 10
sygne@997 11 SOURCE="rox-filer"
sygne@997 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
Hans-G?nter@21845 13 WGET_URL="$SF_MIRROR/rox/$TARBALL"
sygne@997 14
Hans-G?nter@21845 15 WANTED="rox-filer"
pascal@15600 16 BUILD_DEPENDS=""
pascal@15600 17
pascal@24348 18 # What is the latest version available today?
pascal@24348 19 current_version()
pascal@24348 20 {
pascal@24348 21 wget -O - https://sourceforge.net/projects/rox/files/rox/ 2>/dev/null | \
pascal@24348 22 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|' | sort -Vr | sed q | xargs wget -O - 2>/dev/null | \
pascal@24348 23 sed '/scope="row/!d;s|.*/rox/||;s|/.*||;q'
pascal@24348 24 }
pascal@24348 25
sygne@997 26 # Rules to configure and make the package.
sygne@997 27 compile_rules()
sygne@997 28 {
pascal@15600 29 mkdir -p $DESTDIR/rox-default-icons
pascal@15600 30 cp -a $src/ROX-Filer/ROX/* $DESTDIR/rox-default-icons/
sygne@997 31 }
sygne@997 32
sygne@997 33 # Rules to gen a SliTaz package suitable for Tazpkg.
sygne@997 34 genpkg_rules()
sygne@997 35 {
sygne@997 36 mkdir -p $fs/usr/share/icons
pascal@15600 37 cp -r $install/* $fs/usr/share/icons/
sygne@997 38 }
Hans-G?nter@21846 39