wok-undigest view blackbox/receipt @ rev 260

libbonobo has moved to wok
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 28 22:44:58 2011 +0200 (2011-05-28)
parents 7b88e8b8761f
children 488f6433a316
line source
1 # SliTaz package receipt.
3 PACKAGE="blackbox"
4 VERSION="0.70.1"
5 CATEGORY="x-window"
6 SHORT_DESC="A small, fast, full-featured window manager for X"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://blackboxwm.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/blackboxwm/$TARBALL"
11 BUILD_DEPENDS="xorg-libXt-dev xorg-libXft-dev"
12 DEPENDS="xorg-libXt xorg-libXft sed xorg-xextproto"
14 # TODO: modify tazx for blackbox so it will creat a correct ~/.xinitrc
15 # to let user use the wm via slim/F1 or by default with 'tazx blackbox'.
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr --sysconfdir=/etc \
22 --libexecdir=/usr/bin --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 patch -p1 < ../stuff/blackbox-0.70.1-gcc-4.3.patch
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/blackbox $fs/usr/share
35 }