wok view blackbox/receipt @ rev 23837

Up freetype (2.10.2), git (2.26.2), glpi (9.4.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 01 10:44:24 2020 +0000 (2020-06-01)
parents 779dc452891d
children 5ea0ce1cecc0
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 ./autogen.sh &&
30 ./configure \
31 CC=gcc-83 \
32 CXX=g++-83 \
33 --sysconfdir=/etc \
34 --libexecdir=/usr/bin \
35 --mandir=/usr/share/man \
36 $CONFIGURE_ARGS &&
37 make &&
38 make DESTDIR=$DESTDIR install
39 }
41 # Rules to gen a SliTaz package suitable for Tazpkg.
42 genpkg_rules()
43 {
44 mkdir -p $fs/usr/share
46 cp -a $install/usr/bin $fs/usr
47 cp -a $install/usr/share/blackbox $fs/usr/share
48 }