wok view matchbox-desktop/receipt @ rev 11017

ssfs-busybox: wanted busybox
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 13 16:56:20 2011 +0200 (2011-10-13)
parents
children 1ae5963f23df
line source
1 # SliTaz package receipt.
3 PACKAGE="matchbox-desktop"
4 VERSION="0.9.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Matchbox desktop."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://matchbox-project.org/"
10 WGET_URL="${WEB_SITE}sources/$PACKAGE/0.9/$TARBALL"
12 DEPENDS="gtk+ startup-notification libmatchbox"
13 BUILD_DEPENDS="gtk+-dev startup-notification-dev libmatchbox-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --sysconfdir=/etc \
21 $CONFIGURE_ARGS &&
22 sed -i s'/$(install_sh) -d/mkdir -p/' data/Makefile &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib/matchbox/desktop
30 cp -a $install/etc $fs
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/matchbox/desktop/*.so \
33 $fs/usr/lib/matchbox/desktop
34 cp -a $install/usr/share $fs/usr
35 }