wok rev 4679

Add lives (light video editor)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Dec 30 10:50:16 2009 +0100 (2009-12-30)
parents 33c4817c0604
children 81a261d1fff0
files lives/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lives/receipt	Wed Dec 30 10:50:16 2009 +0100
     1.3 @@ -0,0 +1,38 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="lives"
     1.7 +VERSION="1.1.8"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="Simple to use, yet powerful video editor and VJ tool."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +SOURCE="LiVES"
    1.12 +TARBALL="$SOURCE-$VERSION.tar.bz2"
    1.13 +WEB_SITE="http://lives.sourceforge.net/"
    1.14 +WGET_URL="http://www.xs4all.nl/%7Esalsaman/lives/current/$TARBALL"
    1.15 +DEPENDS="alsa-lib libpng gtk+ sox"
    1.16 +BUILD_DEPENDS="alsa-lib-dev libpng-dev gtk+-dev"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +#
    1.20 +compile_rules()
    1.21 +{
    1.22 +	cd $PACKAGE-$VERSION
    1.23 +	./configure \
    1.24 +		--prefix=/usr \
    1.25 +		--disable-jack \
    1.26 +		$CONFIGURE_ARGS &&
    1.27 +	make &&
    1.28 +	make DESTDIR=$PWD/_pkg install
    1.29 +}
    1.30 +
    1.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 +genpkg_rules()
    1.33 +{
    1.34 +	_pkg=$WOK/$PACKAGE/$PACKAGE-$VERSION/_pkg
    1.35 +	mkdir -p $fs/usr/lib $fs/usr/share
    1.36 +	cp -a $_pkg/usr/bin $fs/usr
    1.37 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.38 +	cp -a $_pkg/usr/lib/lives $fs/usr/lib
    1.39 +	cp -a $_pkg/usr/share/lives $fs/usr/share
    1.40 +	find $fs/usr/lib/lives -name "*.la" -exec rm '{}' \;
    1.41 +}