wok annotate matchbox-desktop/receipt @ rev 15280

cinepaint: remove a wrong error trigger (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 26 13:12:43 2013 +0000 (2013-09-26)
parents 5b8df23bd525
children 3765f181a6d5
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
pascal@15110 19 export LDFLAGS="-Wl,--copy-dt-needed-entries -ldl"
pankso@10838 20 ./configure \
pankso@10838 21 --sysconfdir=/etc \
pankso@10838 22 $CONFIGURE_ARGS &&
pankso@10838 23 sed -i s'/$(install_sh) -d/mkdir -p/' data/Makefile &&
pankso@10838 24 make && make install
pankso@10838 25 }
pankso@10838 26
pankso@10838 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@10838 28 genpkg_rules()
pankso@10838 29 {
pankso@10838 30 mkdir -p $fs/usr/lib/matchbox/desktop
pankso@10838 31 cp -a $install/etc $fs
pankso@10838 32 cp -a $install/usr/bin $fs/usr
pankso@10838 33 cp -a $install/usr/lib/matchbox/desktop/*.so \
pankso@10838 34 $fs/usr/lib/matchbox/desktop
pankso@10838 35 cp -a $install/usr/share $fs/usr
pankso@10838 36 }
pankso@10838 37