wok view libxfce4ui/receipt @ rev 25794
created recipe for exo-lang
author | Hans-G?nter Theisgen |
---|---|
date | Wed Oct 23 16:19:52 2024 +0100 (4 weeks ago) |
parents | a753bd482ec9 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="libxfce4ui"
4 VERSION="4.12.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Gtk Widget library."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://docs.xfce.org/xfce/libxfce4ui/start"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
14 SUGGESTED="libxfce4ui-lang"
15 DEPENDS="dbus-glib gtk+ libglade libxfce4util startup-notification
16 util-linux-uuid xfconf"
17 BUILD_DEPENDS="gtk+-dev intltool libglade-dev libxfce4util-dev
18 startup-notification-dev util-linux-uuid-dev xcb-util-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|.*libxfce4ui ||'
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 ./configure \
31 --sysconfdir=/etc \
32 --disable-debug \
33 $CONFIGURE_ARGS &&
34 make &&
35 make install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 cook_copy_folders etc
42 cook_copy_files *.so*
43 }