wok view xfwm4/receipt @ rev 16329

ARM: add xorg-xprop - Used in the new SliTaz Tiny/Touch Screen (sts) desktop
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 10 19:50:37 2014 +0200 (2014-04-10)
parents 7896f0694ef6
children 5d53e8ccbc8d
line source
1 # SliTaz package receipt.
3 PACKAGE="xfwm4"
4 VERSION="4.11.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Window Manager"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.xfce.org/"
11 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="libxfce4util libxfce4ui xfconf dbus-glib libwnck libglade"
14 BUILD_DEPENDS="libxfce4util-dev xfconf-dev libxfce4ui-dev xorg-compositeproto intltool \
15 libwnck-dev dbus-glib-dev util-linux-uuid-dev libxml2-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr \
22 --enable-render \
23 --enable-startup-notification \
24 --enable-randr \
25 --disable-debug \
26 --disable-static \
27 --mandir=/usr/share/man $CONFIGURE_ARGS && \
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr \
35 $fs/usr/share/locale
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/share/applications $fs/usr/share
39 cp -a $install/usr/share/icons $fs/usr/share
40 cp -a $install/usr/share/themes $fs/usr/share
41 cp -a $install/usr/share/xfwm4 $fs/usr/share
43 # Remove SVG icons
44 test -d $fs/usr/share/icons/hicolor/scalable \
45 && rm -rf $fs/usr/share/icons/hicolor/scalable
46 }