wok view openbox/receipt @ rev 22806

updated get-algobox (1.00 -> 1.01)
author Hans-G?nter Theisgen
date Tue Jan 28 15:57:03 2020 +0100 (2020-01-28)
parents 1c458fa173fb
children ee53899c6189
line source
1 # SliTaz package receipt.
3 PACKAGE="openbox"
4 VERSION="3.6.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Small-footprint and standard compliant Window Manager."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://openbox.org/"
11 WGET_URL="http://openbox.org/dist/openbox/$TARBALL"
12 TAGS="window-manager"
13 HOST_ARCH="i486 arm"
15 SUGGESTED="obconf spacefm pcmanfm hsetroot wbar2 conky"
16 DEPENDS="pango glib xorg-libX11 fontconfig freetype xorg-libXrandr \
17 xorg-libXft xorg-libXinerama xorg-libXcursor libxml2 slitaz-configs"
18 BUILD_DEPENDS=" pango-dev glib-dev xorg-libXft-dev util-linux-uuid-dev \
19 libxml2-dev xcb-util-dev"
21 # Handle slitaz arch: /etc/slitaz/slitaz.conf
22 case "$SLITAZ_ARCH" in
23 i?86) DEPENDS="$DEPENDS startup-notification" ;;
24 arm*) DEPENDS="$DEPENDS hsetroot tint2" ;;
25 esac
27 # Handle cross compilation
28 case "$ARCH" in
29 i?86) BUILD_DEPENDS="$BUILD_DEPENDS startup-notification-dev xorg-dev" ;;
30 esac
32 # Rules to configure and make the package.
33 compile_rules()
34 {
35 chmod +x install-sh
36 patch -p1 < ${stuff}/openbox-rounded.patch || exit 1
37 ./configure \
38 --prefix=/usr \
39 --sysconfdir=/etc \
40 --libexecdir=/usr/lib/openbox \
41 $CONFIGURE_ARGS &&
42 sed -i 's/^mkdir_p = .*/mkdir_p = mkdir -p/' po/Makefile &&
43 make &&
44 make -j1 DESTDIR=$DESTDIR install &&
45 rm -rf $install/usr/share/applications
46 }
48 # Rules to gen a SliTaz package suitable for Tazpkg.
49 genpkg_rules()
50 {
51 mkdir -p $fs/usr/lib/openbox $fs/usr/share/themes
52 cp -a $install/usr/bin $fs/usr
53 cp -a $install/usr/lib/*.so* $fs/usr/lib
54 cp -a $install/usr/lib/openbox $fs/usr/lib
56 # We dont have GNOME or KDE
57 rm $fs/usr/bin/openbox-gnome-session
58 rm $fs/usr/bin/openbox-kde-session
59 rm $fs/usr/bin/gnome-panel-control
60 rm $fs/usr/bin/gdm-control
61 chmod 0755 $fs/usr/bin/openbox-session
63 # Python XDG script --> openbox-python
64 rm -f $fs/usr/lib/openbox/openbox-xdg-autostart
65 patch -p1 $fs/usr/lib/openbox/openbox-autostart \
66 -i $stuff/openbox-autostart.patch || exit 1
68 # Just Onyx Themes --> openbox-themes
69 cp -a $install/usr/share/themes/Onyx* $fs/usr/share/themes
71 # Xsessions
72 cp -a $stuff/xsessions $fs/usr/share
74 # Pipe menu.
75 cp $stuff/open-folder-menu.sh $fs/usr/lib/openbox
77 # Set perms.
78 chown -R root.root $fs
79 }