# HG changeset patch # User Rohit Joshi # Date 1241699686 0 # Node ID 085631d53d6e51c933735ebb3fbd7ae516827a79 # Parent ec31ce5febc92cba003d129e0afada7268e36e53 Add: imagination (lightweight slideshow maker) diff -r ec31ce5febc9 -r 085631d53d6e imagination/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagination/receipt Thu May 07 12:34:46 2009 +0000 @@ -0,0 +1,35 @@ +# SliTaz package receipt. + +PACKAGE="imagination" +VERSION="1.0" +CATEGORY="graphics" +SHORT_DESC="lightweight and simple GTK+ DVD slideshow maker" +MAINTAINER="jozee@slitaz.org" +DEPENDS="gtk+ ffmpeg" +BUILD_DEPENDS="gtk+-dev ffmpeg-dev ffmpeg" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://imagination.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +TAGS="slideshow photo" + + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr && + make && + make DESTDIR=$PWD/_pkg install + +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share/pixmaps + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/$PACKAGE/*.so $fs/usr/lib/$PACKAGE + cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share + cp -a $_pkg/usr/share/icons/hicolor/16x16/apps/* $fs/usr/share/pixmaps + +}