wok rev 15310

lives: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 15:34:03 2013 +0000 (2013-09-27)
parents 02bedd0cabb7
children be185b2561ff
files lives/receipt
line diff
     1.1 --- a/lives/receipt	Fri Sep 27 15:02:39 2013 +0000
     1.2 +++ b/lives/receipt	Fri Sep 27 15:34:03 2013 +0000
     1.3 @@ -5,10 +5,12 @@
     1.4  CATEGORY="multimedia"
     1.5  SHORT_DESC="Simple to use, yet powerful video editor and VJ tool."
     1.6  MAINTAINER="pankso@slitaz.org"
     1.7 +LICENSE="GPL3"
     1.8  SOURCE="LiVES"
     1.9  TARBALL="$SOURCE-$VERSION.tar.bz2"
    1.10  WEB_SITE="http://lives.sourceforge.net/"
    1.11  WGET_URL="http://www.xs4all.nl/%7Esalsaman/lives/current/$TARBALL"
    1.12 +
    1.13  DEPENDS="alsa-lib libpng gtk+ sox mjpegtools libavc1394 liboil libtheora"
    1.14  BUILD_DEPENDS="alsa-lib alsa-lib-dev libpng-dev gtk+-dev procps expat-dev perl"
    1.15  
    1.16 @@ -22,16 +24,17 @@
    1.17  		--disable-jack \
    1.18  		$CONFIGURE_ARGS &&
    1.19  	make &&
    1.20 -	make DESTDIR=$PWD/_pkg install
    1.21 +	make DESTDIR=$DESTDIR install 2>&1 | \
    1.22 +	sed "s/gmo': No such file/gmo': no such file/"
    1.23  }
    1.24  
    1.25  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.26  genpkg_rules()
    1.27  {
    1.28  	mkdir -p $fs/usr/lib $fs/usr/share
    1.29 -	cp -a $_pkg/usr/bin $fs/usr
    1.30 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.31 -	cp -a $_pkg/usr/lib/lives $fs/usr/lib
    1.32 -	cp -a $_pkg/usr/share/lives $fs/usr/share
    1.33 +	cp -a $install/usr/bin $fs/usr
    1.34 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.35 +	cp -a $install/usr/lib/lives $fs/usr/lib
    1.36 +	cp -a $install/usr/share/lives $fs/usr/share
    1.37  	find $fs/usr/lib/lives -name "*.la" -exec rm '{}' \;
    1.38  }