wok rev 21369

updated lives (1.3.4 -> 2.10.2)
author Hans-G?nter Theisgen
date Sun Apr 21 17:43:33 2019 +0100 (2019-04-21)
parents ba24cd78b4ff
children f3e5f6a3ef9a
files lives/receipt
line diff
     1.1 --- a/lives/receipt	Sun Apr 21 17:17:34 2019 +0100
     1.2 +++ b/lives/receipt	Sun Apr 21 17:43:33 2019 +0100
     1.3 @@ -1,42 +1,48 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="lives"
     1.7 -VERSION="1.3.4"
     1.8 +VERSION="2.10.2"
     1.9  CATEGORY="multimedia"
    1.10  SHORT_DESC="Simple to use, yet powerful video editor and VJ tool."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="GPL3"
    1.13 +WEB_SITE="http://lives.sourceforge.net/"
    1.14 +
    1.15  SOURCE="LiVES"
    1.16  TARBALL="$SOURCE-$VERSION.tar.bz2"
    1.17 -WEB_SITE="http://lives.sourceforge.net/"
    1.18 -WGET_URL="http://www.xs4all.nl/%7Esalsaman/lives/current/$TARBALL"
    1.19 +WGET_URL="http://lives-video.com/releases/$TARBALL"
    1.20  
    1.21 -DEPENDS="alsa-lib libpng gtk+ sox mjpegtools libavc1394 liboil libtheora"
    1.22 -BUILD_DEPENDS="alsa-lib alsa-lib-dev libpng-dev gtk+-dev procps expat-dev perl"
    1.23 +DEPENDS="alsa-lib gtk+ libavc1394 liboil libpng libtheora mjpegtools sox"
    1.24 +BUILD_DEPENDS="alsa-lib alsa-lib-dev expat-dev gtk+-dev libpng-dev perl procps"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  #
    1.28  compile_rules()
    1.29  {
    1.30  	sed -i 's|\$(LN_S) \$(DESTDIR)\$(bindir)/lives-exe|$(LN_S) lives-exe|' Makefile*
    1.31 -	./configure \
    1.32 -		--prefix=/usr \
    1.33 -		--disable-jack \
    1.34 -	$CONFIGURE_ARGS &&
    1.35 -	make &&
    1.36 +
    1.37 +	./configure		\
    1.38 +		--prefix=/usr	\
    1.39 +		--disable-jack	\
    1.40 +		$CONFIGURE_ARGS &&
    1.41 +	make -j 1 &&
    1.42  	make DESTDIR=$DESTDIR install 2>&1 | \
    1.43 -	sed "s/gmo': No such file/gmo': no such file/"
    1.44 +		sed "s/gmo': No such file/gmo': no such file/"
    1.45  }
    1.46  
    1.47  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.48  genpkg_rules()
    1.49  {
    1.50 -	mkdir -p $fs/usr/lib $fs/usr/share
    1.51 -	cp -a $install/usr/bin $fs/usr
    1.52 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.53 -	cp -a $install/usr/lib/lives $fs/usr/lib
    1.54 -	cp -a $install/usr/share/lives $fs/usr/share
    1.55 +	mkdir -p $fs/usr/lib
    1.56 +	mkdir -p $fs/usr/share
    1.57 +
    1.58 +	cp -a $install/usr/bin		$fs/usr
    1.59 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.60 +	cp -a $install/usr/lib/lives	$fs/usr/lib
    1.61 +	cp -a $install/usr/share/lives	$fs/usr/share
    1.62 +
    1.63  	find $fs/usr/lib/lives -name "*.la" -exec rm '{}' \;
    1.64 +
    1.65  	# Fix the name (.desktop) file.
    1.66  	sed -i 's/^Exec=.*/Exec=lives-exe/' $install/usr/share/applications/LiVES.desktop
    1.67  }