wok view avidemux/receipt @ rev 4604

vlc: spin off libvlc & libvlc-dev
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 15 16:03:36 2009 +0100 (2009-12-15)
parents 691c85c10a0e
children 395ec8205cff
line source
1 # SliTaz package receipt.
3 PACKAGE="avidemux"
4 VERSION="2.5.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="free video editor"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS="libsdl alsa-lib libsdl-gfx"
9 BUILD_DEPENDS="cmake alsa-lib-dev libsdl-dev libsdl-gfx-dev"
10 TARBALL="avidemux_$VERSION.tar.gz"
11 WEB_SITE="http://fixounet.free.fr/$PACKAGE"
12 WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL"
13 TAGS="video movie editor avi mpeg mp4"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 mkdir $WOK/$PACKAGE/avidemux-$VERSION
19 mv $WOK/$PACKAGE/avidemux_$VERSION $WOK/$PACKAGE/avidemux-$VERSION/src
20 cd $src
21 mkdir built
22 cd built
23 cmake -DCMAKE_INSTALL_PREFIX=/usr ../src
24 make && make DESTDIR=$PWD/../_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/share/ADM_scripts $fs/usr/share
34 }