wok view xfce4-panel/receipt @ rev 14824

Up: xfce4-panel* (4.10.0)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Jul 17 13:51:16 2013 +0200 (2013-07-17)
parents 73641efed1cc
children 7896f0694ef6
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce4-panel"
4 VERSION="4.10.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Panel"
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.xfce.org/"
10 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="libxfce4util libxfce4ui libexo libwnck garcon util-linux-uuid dbus-glib"
13 BUILD_DEPENDS="libxfce4util-dev libxfce4ui-dev libexo-dev libwnck-dev cairo-dev garcon-dev
14 xorg-libXext-dev xorg-xextproto dbus-glib-dev util-linux-uuid-dev intltool exo xfconf-dev
15 libxml2-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
21 cd $src
22 ./configure --prefix=/usr \
23 --sysconfdir=/etc \
24 --disable-debug \
25 --mandir=/usr/share/man $CONFIGURE_ARGS && \
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr \
33 $fs/usr/share/locale \
34 $fs/usr/share/xfce4 \
35 $fs/usr/lib/xfce4/panel/plugins
37 cp -a $install/etc $fs
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/lib/*.so* $fs/usr/lib
40 cp -a $install/usr/lib/xfce4/panel/plugins/*.so* $fs/usr/lib/xfce4/panel/plugins
41 cp -a $install/usr/lib/xfce4/panel/migrate $fs/usr/lib/xfce4/panel
42 cp -a $install/usr/lib/xfce4/panel/wrapper $fs/usr/lib/xfce4/panel
43 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
44 cp -a $install/usr/share/applications $fs/usr/share
45 cp -a $install/usr/share/icons $fs/usr/share
46 cp -a $install/usr/share/xfce4 $fs/usr/share
48 # Strip evrythings
49 find $fs/usr/lib/ -exec strip -s {} 2> /dev/null \;
51 }