wok view xfdesktop/receipt @ rev 25791
Up dropbear (2024.86), libssh2 (1.11.1), xz (5.6.3)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Oct 23 13:27:53 2024 +0000 (2 months ago) |
parents | bd7510903310 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="xfdesktop"
4 VERSION="4.12.5"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Desktop."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://docs.xfce.org/xfce/xfdesktop/start"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
14 SUGGESTED="xfdesktop-lang"
15 DEPENDS="gamin libexo libglade libnotify libxfcegui4 libxfce4util thunar"
16 BUILD_DEPENDS="dbus-glib gamin-dev hal-dev intltool libexo-dev libglade-dev
17 libnotify-dev libwnck-dev libxfce4ui-dev libxfce4util-dev thunar-dev
18 util-linux-uuid-dev xcb-util-dev xfce4-panel-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|.*xfdesktop ||'
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 ./configure \
31 --prefix=/usr \
32 --enable-gio-unix \
33 --enable-notifications \
34 --disable-static \
35 --enable-thunarx \
36 $CONFIGURE_ARGS &&
37 make &&
38 make install
39 }
41 # Rules to gen a SliTaz package suitable for Tazpkg.
42 genpkg_rules()
43 {
44 cook_copy_folders bin
46 #~ strip -s $fs/usr/lib/$PACKAGE/xfce4/panel-plugins/*
47 }