wok-6.x diff imagination/receipt @ rev 8193
imported patch toolchain/libgomp.patch
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Thu Jan 27 00:20:50 2011 +0100 (2011-01-27) |
parents | |
children | c871e97fbb65 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/imagination/receipt Thu Jan 27 00:20:50 2011 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="imagination" 1.7 +VERSION="1.0" 1.8 +CATEGORY="graphics" 1.9 +SHORT_DESC="lightweight and simple GTK+ DVD slideshow maker" 1.10 +MAINTAINER="jozee@slitaz.org" 1.11 +DEPENDS="gtk+ ffmpeg" 1.12 +BUILD_DEPENDS="gtk+-dev ffmpeg-dev ffmpeg" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WEB_SITE="http://imagination.sourceforge.net/" 1.15 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.16 +TAGS="slideshow photo" 1.17 + 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + cd $src 1.23 + ./configure --prefix=/usr && 1.24 + make && 1.25 + make DESTDIR=$PWD/_pkg install 1.26 + 1.27 +} 1.28 + 1.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.30 +genpkg_rules() 1.31 +{ 1.32 + mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share/pixmaps 1.33 + cp -a $_pkg/usr/bin $fs/usr 1.34 + cp -a $_pkg/usr/lib/$PACKAGE/*.so $fs/usr/lib/$PACKAGE 1.35 + cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share 1.36 + cp -a $_pkg/usr/share/icons/hicolor/16x16/apps/* $fs/usr/share/pixmaps 1.37 + 1.38 +}