# HG changeset patch # User Pascal Bellard # Date 1380296043 0 # Node ID 25e35ad06e080072b38cab1706f461105a15d8da # Parent 02bedd0cabb72c12b11fde952531b815070dd1e5 lives: remove a wrong error trigger diff -r 02bedd0cabb7 -r 25e35ad06e08 lives/receipt --- a/lives/receipt Fri Sep 27 15:02:39 2013 +0000 +++ b/lives/receipt Fri Sep 27 15:34:03 2013 +0000 @@ -5,10 +5,12 @@ CATEGORY="multimedia" SHORT_DESC="Simple to use, yet powerful video editor and VJ tool." MAINTAINER="pankso@slitaz.org" +LICENSE="GPL3" 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 mjpegtools libavc1394 liboil libtheora" BUILD_DEPENDS="alsa-lib alsa-lib-dev libpng-dev gtk+-dev procps expat-dev perl" @@ -22,16 +24,17 @@ --disable-jack \ $CONFIGURE_ARGS && make && - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTDIR install 2>&1 | \ + sed "s/gmo': No such file/gmo': no such file/" } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { 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 + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/lives $fs/usr/lib + cp -a $install/usr/share/lives $fs/usr/share find $fs/usr/lib/lives -name "*.la" -exec rm '{}' \; }