wok-stable view lives/receipt @ rev 12459

lives: fix symlink (thanks I-Jurij)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 28 08:19:20 2017 +0200 (2017-04-28)
parents be13f25e790b
children
line source
1 # SliTaz package receipt.
3 PACKAGE="lives"
4 VERSION="1.3.4"
5 CATEGORY="multimedia"
6 SHORT_DESC="Simple to use, yet powerful video editor and VJ tool."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="LiVES"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://lives.sourceforge.net/"
11 WGET_URL="http://www.xs4all.nl/%7Esalsaman/lives/current/$TARBALL"
12 DEPENDS="alsa-lib libpng gtk+ sox mjpegtools libavc1394 liboil libtheora"
13 BUILD_DEPENDS="alsa-lib alsa-lib-dev libpng-dev gtk+-dev procps expat-dev perl"
15 # Rules to configure and make the package.
16 #
17 compile_rules()
18 {
19 sed -i 's|\$(LN_S) \$(DESTDIR)\$(bindir)/lives-exe|$(LN_S) lives-exe|' Makefile*
20 ./configure \
21 --prefix=/usr \
22 --disable-jack \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib $fs/usr/share
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 cp -a $install/usr/lib/lives $fs/usr/lib
35 cp -a $install/usr/share/lives $fs/usr/share
36 find $fs/usr/lib/lives -name "*.la" -exec rm '{}' \;
37 }