wok annotate matchbox-window-manager/receipt @ rev 11710

added tintin
author toronado
date Sun Feb 19 08:14:43 2012 -0800 (2012-02-19)
parents
children 3765f181a6d5
rev   line source
pankso@10838 1 # SliTaz package receipt.
pankso@10838 2
pankso@10838 3 PACKAGE="matchbox-window-manager"
pankso@10838 4 VERSION="1.2"
pankso@10838 5 CATEGORY="x-window"
pankso@10838 6 SHORT_DESC="Matchbox Window Manager."
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/1.2/$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 --enable-expat \
pankso@10838 22 --enable-startup-notification \
pankso@10838 23 --enable-session \
pankso@10838 24 $CONFIGURE_ARGS &&
pankso@10838 25 make && make install
pankso@10838 26 }
pankso@10838 27
pankso@10838 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@10838 29 genpkg_rules()
pankso@10838 30 {
pankso@10838 31 mkdir -p $fs/usr
pankso@10838 32 cp -a $install/etc $fs
pankso@10838 33 cp -a $install/usr/bin $fs/usr
pankso@10838 34 cp -a $install/usr/share $fs/usr
pankso@10838 35 }
pankso@10838 36