wok view matchbox-desktop/receipt @ rev 15368

Up ipxe (1.0.0-20130925)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 14 13:38:36 2013 +0000 (2013-10-14)
parents 5b8df23bd525
children 3765f181a6d5
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 export LDFLAGS="-Wl,--copy-dt-needed-entries -ldl"
20 ./configure \
21 --sysconfdir=/etc \
22 $CONFIGURE_ARGS &&
23 sed -i s'/$(install_sh) -d/mkdir -p/' data/Makefile &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/matchbox/desktop
31 cp -a $install/etc $fs
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/matchbox/desktop/*.so \
34 $fs/usr/lib/matchbox/desktop
35 cp -a $install/usr/share $fs/usr
36 }