wok view thunar-archive-plugin/receipt @ rev 25797
created recipe for garcon-lang
author | Hans-G?nter Theisgen |
---|---|
date | Wed Oct 23 17:04:51 2024 +0100 (4 weeks ago) |
parents | bd7510903310 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="thunar-archive-plugin"
4 VERSION="0.3.0"
5 CATEGORY="x-window"
6 TAGS="archive"
7 SHORT_DESC="Thunar Archive Manager plugin."
8 MAINTAINER="erjo@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://docs.xfce.org/xfce/thunar/archive"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="https://archive.xfce.org/src/thunar-plugins/$PACKAGE/${VERSION%.*}/$TARBALL"
15 SUGGESTED="thunar-archive-plugin-lang"
16 DEPENDS="thunar"
17 BUILD_DEPENDS="intltool libexo-dev libxfce4ui-dev startup-notification-dev
18 thunar-dev xfconf-dev"
20 # What is the latest version available today?
21 current_version()
22 {
23 wget -O - $WEB_SITE 2>/dev/null |
24 sed '/released/!d;s| released.*||;s|.*plugin ||'
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 ./configure \
31 --libexecdir=/usr/lib \
32 $CONFIGURE_ARGS &&
33 make &&
34 make install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 cook_copy_files *.so*
41 cook_copy_folders icons
42 cook_copy_folders $PACKAGE
43 }