wok view xfconf/receipt @ rev 25793

reverted version 4.14.1 to 4.12.0 for xfconf packages
author Hans-G?nter Theisgen
date Wed Oct 23 15:16:12 2024 +0100 (4 weeks ago)
parents a753bd482ec9
children
line source
1 # SliTaz package receipt.
3 PACKAGE="xfconf"
4 VERSION="4.12.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Configuration Utility."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://docs.xfce.org/xfce/xfconf/start"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
14 SUGGESTED="xfconf-lang"
15 DEPENDS="dbus-glib gtk+ libxfce4util"
16 BUILD_DEPENDS="dbus-dev dbus-glib-dev glib-dev gtk+-dev intltool libgio-dev libxfce4util-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null |
22 sed '/ released /!d;s| released.*||;s|.*xfconf ||'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./configure \
29 --prefix=/usr \
30 --infodir=/usr/share/info \
31 --libexecdir=/usr/lib/$PACKAGE \
32 --mandir=/usr/share/man \
33 --disable-debug \
34 $CONFIGURE_ARGS &&
35 make &&
36 make install
37 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 cook_copy_folders bin
44 cook_copy_folders dbus-1
45 cook_copy_files xfconfd
46 cook_copy_files *.so*
48 strip -s $fs/usr/lib/xfce4/$PACKAGE/*
49 }