# HG changeset patch # User Christophe Lincoln # Date 1262166616 -3600 # Node ID 39d5e920561a00cf49a3c81246a96f98c9ce1c31 # Parent 33c4817c06045e94db5f4df398c844aca215db6f Add lives (light video editor) diff -r 33c4817c0604 -r 39d5e920561a lives/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lives/receipt Wed Dec 30 10:50:16 2009 +0100 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="lives" +VERSION="1.1.8" +CATEGORY="multimedia" +SHORT_DESC="Simple to use, yet powerful video editor and VJ tool." +MAINTAINER="pankso@slitaz.org" +SOURCE="LiVES" +TARBALL="$SOURCE-$VERSION.tar.bz2" +WEB_SITE="http://lives.sourceforge.net/" +WGET_URL="http://www.xs4all.nl/%7Esalsaman/lives/current/$TARBALL" +DEPENDS="alsa-lib libpng gtk+ sox" +BUILD_DEPENDS="alsa-lib-dev libpng-dev gtk+-dev" + +# Rules to configure and make the package. +# +compile_rules() +{ + cd $PACKAGE-$VERSION + ./configure \ + --prefix=/usr \ + --disable-jack \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + _pkg=$WOK/$PACKAGE/$PACKAGE-$VERSION/_pkg + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + cp -a $_pkg/usr/lib/lives $fs/usr/lib + cp -a $_pkg/usr/share/lives $fs/usr/share + find $fs/usr/lib/lives -name "*.la" -exec rm '{}' \; +}