wok-6.x annotate lives/receipt @ rev 16678
Add virtual packages Qt4, libcairo-compmgr, libpurple
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri May 16 09:47:35 2014 +0000 (2014-05-16) |
parents | be13f25e790b |
children | 843a4df9e36a |
rev | line source |
---|---|
pankso@4679 | 1 # SliTaz package receipt. |
pankso@4679 | 2 |
pankso@4679 | 3 PACKAGE="lives" |
slaxemulator@6358 | 4 VERSION="1.3.4" |
pankso@4679 | 5 CATEGORY="multimedia" |
pankso@4679 | 6 SHORT_DESC="Simple to use, yet powerful video editor and VJ tool." |
pankso@4679 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15310 | 8 LICENSE="GPL3" |
pankso@4679 | 9 SOURCE="LiVES" |
pankso@4679 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pankso@4679 | 11 WEB_SITE="http://lives.sourceforge.net/" |
pankso@4679 | 12 WGET_URL="http://www.xs4all.nl/%7Esalsaman/lives/current/$TARBALL" |
pascal@15310 | 13 |
pascal@5003 | 14 DEPENDS="alsa-lib libpng gtk+ sox mjpegtools libavc1394 liboil libtheora" |
slaxemulator@6358 | 15 BUILD_DEPENDS="alsa-lib alsa-lib-dev libpng-dev gtk+-dev procps expat-dev perl" |
pankso@4679 | 16 |
pankso@4679 | 17 # Rules to configure and make the package. |
pankso@4679 | 18 # |
pankso@4679 | 19 compile_rules() |
pankso@4679 | 20 { |
slaxemulator@8476 | 21 cd $src |
pankso@4679 | 22 ./configure \ |
pankso@4679 | 23 --prefix=/usr \ |
pankso@4679 | 24 --disable-jack \ |
pankso@4679 | 25 $CONFIGURE_ARGS && |
pankso@4679 | 26 make && |
pascal@15310 | 27 make DESTDIR=$DESTDIR install 2>&1 | \ |
pascal@15310 | 28 sed "s/gmo': No such file/gmo': no such file/" |
pankso@4679 | 29 } |
pankso@4679 | 30 |
pankso@4679 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4679 | 32 genpkg_rules() |
pankso@4679 | 33 { |
pankso@4679 | 34 mkdir -p $fs/usr/lib $fs/usr/share |
pascal@15310 | 35 cp -a $install/usr/bin $fs/usr |
pascal@15310 | 36 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@15310 | 37 cp -a $install/usr/lib/lives $fs/usr/lib |
pascal@15310 | 38 cp -a $install/usr/share/lives $fs/usr/share |
pankso@4679 | 39 find $fs/usr/lib/lives -name "*.la" -exec rm '{}' \; |
pankso@4679 | 40 } |