wok rev 25755
updated xfdesktop (4.12.0 -> 4.12.5)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Sep 01 11:03:35 2024 +0100 (5 months ago) |
parents | 9c5a110c8dc8 |
children | 09b64f91445e |
files | xfdesktop-lang/receipt xfdesktop/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xfdesktop-lang/receipt Sun Sep 01 11:03:35 2024 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="xfdesktop-lang" 1.7 +VERSION="4.12.5" 1.8 +CATEGORY="localization" 1.9 +SHORT_DESC="Xfce Desktop - localised messages." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="GPL2" 1.12 +WEB_SITE="https://docs.xfce.org/xfce/xfdesktop/start" 1.13 + 1.14 +WANTED="xfdesktop" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + cook_copy_folders locale 1.20 +}
2.1 --- a/xfdesktop/receipt Sun Sep 01 10:54:21 2024 +0100 2.2 +++ b/xfdesktop/receipt Sun Sep 01 11:03:35 2024 +0100 2.3 @@ -1,60 +1,47 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="xfdesktop" 2.7 -VERSION="4.12.0" 2.8 +VERSION="4.12.5" 2.9 CATEGORY="x-window" 2.10 -SHORT_DESC="Xfce Desktop" 2.11 +SHORT_DESC="Xfce Desktop." 2.12 MAINTAINER="erjo@slitaz.org" 2.13 LICENSE="GPL2" 2.14 +WEB_SITE="https://docs.xfce.org/xfce/xfdesktop/start" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.17 -WEB_SITE="https://www.xfce.org/" 2.18 WGET_URL="https://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL" 2.19 2.20 -DEPENDS="libxfce4util libxfcegui4 thunar libexo libglade gamin libnotify" 2.21 -BUILD_DEPENDS="libxfce4util-dev thunar-dev libexo-dev libwnck-dev \ 2.22 -xfconf-dev libglade-dev gamin-dev hal-dev xfce4-panel-dev libnotify-dev intltool \ 2.23 -util-linux-uuid-dev dbus-glib libxfce4ui-dev xcb-util-dev" 2.24 +SUGGESTED="xfdesktop-lang" 2.25 +DEPENDS="gamin libexo libglade libnotify libxfcegui4 libxfce4util thunar" 2.26 +BUILD_DEPENDS="dbus-glib gamin-dev hal-dev intltool libexo-dev libglade-dev 2.27 + libnotify-dev libwnck-dev libxfce4ui-dev libxfce4util-dev thunar-dev 2.28 + util-linux-uuid-dev xcb-util-dev xfce4-panel-dev xfconf-dev" 2.29 2.30 # What is the latest version available today? 2.31 current_version() 2.32 { 2.33 - wget -O - ${WGET_URL%/*/*}/$(wget -O - ${WGET_URL%/*/*} 2>/dev/null | \ 2.34 - sed '/href="/!d;/Index of/d;s|.*href="||;s|/.*||' | sort -Vr | sed q) 2>/dev/null | \ 2.35 - sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-||;s|.tar.*||" | sort -Vr | sed q 2.36 + wget -O - $WEB_SITE 2>/dev/null | 2.37 + sed '/released/!d;s| released.*||;s|.*xfdesktop ||' 2.38 } 2.39 2.40 # Rules to configure and make the package. 2.41 compile_rules() 2.42 { 2.43 - cd $src 2.44 - ./configure --prefix=/usr \ 2.45 - --sysconfdir=/etc \ 2.46 - --enable-notifications \ 2.47 - --enable-gio-unix \ 2.48 - --enable-thunarx \ 2.49 - --disable-static \ 2.50 - --libexecdir=/usr/lib/$PACKAGE \ 2.51 - --mandir=/usr/share/man $CONFIGURE_ARGS && \ 2.52 - make && make DESTDIR=$DESTDIR install 2.53 + ./configure \ 2.54 + --prefix=/usr \ 2.55 + --enable-gio-unix \ 2.56 + --enable-notifications \ 2.57 + --disable-static \ 2.58 + --enable-thunarx \ 2.59 + $CONFIGURE_ARGS && 2.60 + make && 2.61 + make install 2.62 } 2.63 2.64 # Rules to gen a SliTaz package suitable for Tazpkg. 2.65 genpkg_rules() 2.66 { 2.67 - mkdir -p $fs/usr/lib \ 2.68 - $fs/usr/share/locale \ 2.69 - $fs/usr/share/xfce4 2.70 + cook_copy_folders bin 2.71 2.72 - cp -a $install/usr/bin $fs/usr 2.73 - #~ cp -a $install/etc $fs/ 2.74 - #~ cp -a $install/usr/lib/$PACKAGE $fs/usr/lib 2.75 - #~ cp -a $install/usr/lib $fs/usr 2.76 - cp -a $install/usr/share/locale/fr $fs/usr/share/locale 2.77 - cp -a $install/usr/share/applications $fs/usr/share 2.78 - #~ cp -a $install/usr/share/desktop-directories $fs/usr/share 2.79 - #~ cp -a $install/usr/share/xfce4/panel-plugins $fs/usr/share/xfce4 2.80 - 2.81 #~ strip -s $fs/usr/lib/$PACKAGE/xfce4/panel-plugins/* 2.82 - 2.83 } 2.84 -