wok view imagination/receipt @ rev 9779

cairomm: fix BUILD_DEPENDS
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 11 23:00:08 2011 +0200 (2011-05-11)
parents 085631d53d6e
children ad7154bf9979
line source
1 # SliTaz package receipt.
3 PACKAGE="imagination"
4 VERSION="1.0"
5 CATEGORY="graphics"
6 SHORT_DESC="lightweight and simple GTK+ DVD slideshow maker"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="gtk+ ffmpeg"
9 BUILD_DEPENDS="intltool"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://imagination.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="slideshow photo"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share/pixmaps
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/lib/$PACKAGE/*.so $fs/usr/lib/$PACKAGE
32 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
33 cp -a $_pkg/usr/share/icons/hicolor/16x16/apps/* $fs/usr/share/pixmaps
35 }