wok view lives/receipt @ rev 5053

fix typos: libgphoto2
author Rohit Joshi <jozee@slitaz.org>
date Sat Mar 06 18:51:17 2010 +0000 (2010-03-06)
parents 39d5e920561a
children 8960de1b7e32
line source
1 # SliTaz package receipt.
3 PACKAGE="lives"
4 VERSION="1.1.8"
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-dev libpng-dev gtk+-dev"
15 # Rules to configure and make the package.
16 #
17 compile_rules()
18 {
19 cd $PACKAGE-$VERSION
20 ./configure \
21 --prefix=/usr \
22 --disable-jack \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 _pkg=$WOK/$PACKAGE/$PACKAGE-$VERSION/_pkg
32 mkdir -p $fs/usr/lib $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/lives $fs/usr/lib
36 cp -a $_pkg/usr/share/lives $fs/usr/share
37 find $fs/usr/lib/lives -name "*.la" -exec rm '{}' \;
38 }