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