wok-next view lives/receipt @ rev 20594

xcursor-obsidian: update wget URL.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Apr 16 01:07:29 2018 +0300 (2018-04-16)
parents a284db259242
children 5841522533ec
line source
1 # SliTaz package receipt.
3 PACKAGE="lives"
4 VERSION="2.8.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="Simple to use, yet powerful video editor and VJ tool."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 SOURCE="LiVES"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://lives.sourceforge.net/"
12 WGET_URL="http://lives-video.com/releases/$TARBALL"
14 DEPENDS="alsa-lib libpng16 gtk+ sox mjpegtools libavc1394 liboil libtheora"
15 BUILD_DEPENDS="alsa-lib alsa-lib-dev libpng16-dev gtk+-dev procps expat-dev perl \
16 gettext-tools"
18 # Rules to configure and make the package.
19 #
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 --disable-jack \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib $fs/usr/share
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/lib/lives $fs/usr/lib
37 cp -a $install/usr/share/lives $fs/usr/share
38 find $fs/usr/lib/lives -name "*.la" -exec rm '{}' \;
39 # Fix the name (.desktop) file.
40 sed -i 's/^Exec=.*/Exec=lives-exe/' $install/usr/share/applications/LiVES.desktop
41 }