wok view rox-default-icons/receipt @ rev 25037

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