wok view blackbox/receipt @ rev 22542

updated blackbox (0.70.1 -> 0.75)
author Hans-G?nter Theisgen
date Fri Jan 03 17:12:56 2020 +0100 (2020-01-03)
parents 6e8b1bcb30e2
children f8fdb78e9a40
line source
1 # SliTaz package receipt.
3 PACKAGE="blackbox"
4 VERSION="0.75"
5 CATEGORY="x-window"
6 TAGS="window-manager"
7 SHORT_DESC="A small, fast, full-featured window manager for X."
8 MAINTAINER="devl547@gmail.com"
9 LICENSE="MIT"
10 WEB_SITE="https://github.com/bbidulock/blackboxwm"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
15 DEPENDS="gcc83-lib-base xorg-libXft xorg-libXt"
16 BUILD_DEPENDS="autoconf automake gcc83 libtool libxml2-dev
17 xorg-libXft-dev xorg-libXt-dev xorg-xextproto"
19 # TODO: modify tazx for blackbox so it will creat a correct ~/.xinitrc
20 # to let user use the wm via slim/F1 or by default with 'tazx blackbox'.
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 # patch -p1 < $stuff/blackbox-0.70.1-gcc-4.3.patch
26 # patch -p0 < $stuff/blackbox-0.70.1-asneeded.patch
27 # patch -p1 < $stuff/textpropertytostring-unconditional.patch
29 ./configure \
30 CC=gcc-83 \
31 CXX=g++-83 \
32 --sysconfdir=/etc \
33 --libexecdir=/usr/bin \
34 --mandir=/usr/share/man \
35 $CONFIGURE_ARGS &&
36 make &&
37 make DESTDIR=$DESTDIR install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr/share
45 cp -a $install/usr/bin $fs/usr
46 cp -a $install/usr/share/blackbox $fs/usr/share
47 }