wok view xfdesktop/receipt @ rev 21490

trickle: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 01 18:05:32 2019 +0200 (2019-05-01)
parents 6beb1b93f005
children cfb29dc98daa
line source
1 # SliTaz package receipt.
3 PACKAGE="xfdesktop"
4 VERSION="4.10.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Desktop"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
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="libxfce4util libxfcegui4 thunar libexo libglade gamin libnotify"
14 BUILD_DEPENDS="libxfce4util-dev thunar-dev libexo-dev libwnck-dev \
15 xfconf-dev libglade-dev gamin-dev hal-dev xfce4-panel-dev libnotify-dev intltool \
16 util-linux-uuid-dev dbus-glib libxfce4ui-dev xcb-util-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure --prefix=/usr \
23 --sysconfdir=/etc \
24 --enable-notifications \
25 --enable-gio-unix \
26 --enable-thunarx \
27 --disable-static \
28 --libexecdir=/usr/lib/$PACKAGE \
29 --mandir=/usr/share/man $CONFIGURE_ARGS && \
30 make && make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib \
37 $fs/usr/share/locale \
38 $fs/usr/share/xfce4
40 cp -a $install/usr/bin $fs/usr
41 #~ cp -a $install/etc $fs/
42 #~ cp -a $install/usr/lib/$PACKAGE $fs/usr/lib
43 #~ cp -a $install/usr/lib $fs/usr
44 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
45 cp -a $install/usr/share/applications $fs/usr/share
46 #~ cp -a $install/usr/share/desktop-directories $fs/usr/share
47 #~ cp -a $install/usr/share/xfce4/panel-plugins $fs/usr/share/xfce4
49 #~ strip -s $fs/usr/lib/$PACKAGE/xfce4/panel-plugins/*
51 }