wok view matchbox-window-manager/receipt @ rev 18681

Add firejail
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Dec 09 18:47:06 2015 +0100 (2015-12-09)
parents 5d53e8ccbc8d
children 0ad13e0c0b90
line source
1 # SliTaz package receipt.
3 PACKAGE="matchbox-window-manager"
4 VERSION="1.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Matchbox Window Manager."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://matchbox-project.org/"
11 WGET_URL="${WEB_SITE}sources/$PACKAGE/$VERSION/$TARBALL"
12 TAGS="window-manager"
14 DEPENDS="gtk+ startup-notification libmatchbox"
15 BUILD_DEPENDS="gtk+-dev startup-notification-dev libmatchbox-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 --enable-expat \
23 --enable-startup-notification \
24 --enable-session \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/etc $fs
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/share $fs/usr
36 }