wok-next view imagination/receipt @ rev 3769
Upgrade: fastjar (0.94 to 0.97)
| author | Matthew Sheets <rcx@zoominternet.net> | 
|---|---|
| date | Wed Jul 29 14:19:31 2009 +0000 (2009-07-29) | 
| parents | |
| children | c871e97fbb65 | 
 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="gtk+-dev ffmpeg-dev ffmpeg"
    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 }