wok-next view xfwm4/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents 5669e8b3be70
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xfwm4"
4 VERSION="4.12.0" # Xfce release 4.12: http://archive.xfce.org/xfce/4.12/src/
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce window manager"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.xfce.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="intltool libx11-dev libice-dev libsm-dev \
15 libxext-dev gtk2-dev libxfce4util-dev libxfce4ui-dev libwnck2-dev \
16 libdrm-dev libxrandr-dev libxcomposite-dev libxfixes-dev \
17 libxdamage-dev"
18 SPLIT="$PACKAGE-themes $PACKAGE"
20 compile_rules() {
21 ./configure \
22 --disable-debug \
23 $CONFIGURE_ARGS &&
24 fix libtool &&
25 make &&
26 make install
27 }
29 genpkg_rules() {
30 case $PACKAGE in
31 xfwm4-themes)
32 copy themes/
33 DEPENDS="xfwm4"
34 ;;
35 xfwm4)
36 copy @std @rm
37 DEPENDS="libcairo dbus-glib gdk-pixbuf glib gtk2 libwnck2 libxfce4ui \
38 libxfce4util pango startup-notification xfconf libx11 \
39 libxcomposite libxdamage libxext libxfixes \
40 libxrandr libxrender"
41 TAGS="Xfce window-manager"
42 ;;
43 esac
44 }