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

updated python-ipy (0.63 -> 1.00)
author Hans-G?nter Theisgen
date Mon Apr 06 07:33:10 2020 +0100 (2020-04-06)
parents d3eb5f4b53ea
children 241fb98cab1c
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 expat-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 }