wok view libxfce4ui/receipt @ rev 21999

updated sysstat (12.1.1 -> 12.1.7)
author Hans-G?nter Theisgen
date Fri Oct 18 15:25:38 2019 +0100 (2019-10-18)
parents 6dc104fddf08
children c37ae188e486
line source
1 # SliTaz package receipt.
3 PACKAGE="libxfce4ui"
4 VERSION="4.11.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Gtk Widget library"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://www.xfce.org"
11 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="gtk+ libxfce4util libxfconf startup-notification dbus-glib libglade \
14 util-linux-uuid"
15 BUILD_DEPENDS="gtk+-dev libxfce4util-dev libxfconf-dev \
16 startup-notification-dev libglade-dev xcb-util-dev util-linux-uuid-dev intltool"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --sysconfdir=/etc \
23 --disable-debug \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$install install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/etc $fs/
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }