wok-6.x rev 13016
Up: ffmpeg (0.11.1)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Jun 08 21:03:02 2012 +0200 (2012-06-08) |
parents | 9d2eea422544 |
children | c9a0e2565b4f |
files | ffmpeg-dev/receipt ffmpeg/receipt ffplay/receipt |
line diff
1.1 --- a/ffmpeg-dev/receipt Fri Jun 08 21:02:10 2012 +0200 1.2 +++ b/ffmpeg-dev/receipt Fri Jun 08 21:03:02 2012 +0200 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="ffmpeg-dev" 1.7 -VERSION="0.10.3" 1.8 +VERSION="0.11.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Record, convert and stream audio and video, development files." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 @@ -12,9 +12,10 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 - cp -a $_pkg/usr/include $fs/usr 1.18 - cp -a $_pkg/usr/lib/*.a $fs/usr/lib 1.19 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 1.20 + mkdir -p $fs/usr/lib $fs/usr/share/ffmpeg 1.21 + cp -a $install/usr/include $fs/usr 1.22 + #cp -a $install/usr/lib/*.a $fs/usr/lib 1.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.24 + cp -a $install/usr/share/ffmpeg/examples $fs/usr/share/ffmpeg 1.25 } 1.26
2.1 --- a/ffmpeg/receipt Fri Jun 08 21:02:10 2012 +0200 2.2 +++ b/ffmpeg/receipt Fri Jun 08 21:03:02 2012 +0200 2.3 @@ -1,18 +1,19 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="ffmpeg" 2.7 -VERSION="0.10.3" 2.8 +VERSION="0.11.1" 2.9 CATEGORY="multimedia" 2.10 SHORT_DESC="Record, convert and stream audio and video." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 WEB_SITE="http://ffmpeg.org/" 2.13 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.14 WGET_URL="${WEB_SITE}releases/$TARBALL" 2.15 +SUGGESTED="ffplay" 2.16 +TAGS="audio video convert stream" 2.17 + 2.18 DEPENDS="alsa-lib" 2.19 BUILD_DEPENDS="libsdl-dev zlib-dev bzip2-dev coreutils-file-format \ 2.20 coreutils-file-special yasm" 2.21 -SUGGESTED="ffplay" 2.22 -TAGS="audio video convert stream" 2.23 2.24 # Rules to configure and make the package. 2.25 compile_rules() 2.26 @@ -37,19 +38,18 @@ 2.27 --disable-encoder=msmpeg4v3 \ 2.28 --disable-symver \ 2.29 --disable-debug \ 2.30 - --disable-doc && \ 2.31 - make && 2.32 - make install 2.33 + --disable-doc && 2.34 + make && make install 2.35 } 2.36 2.37 # Rules to gen a SliTaz package suitable for Tazpkg. 2.38 genpkg_rules() 2.39 { 2.40 - mkdir -p $fs/usr/lib 2.41 - cp -a $_pkg/usr/lib/*so* $fs/usr/lib 2.42 - cp -a $_pkg/usr/bin $fs/usr 2.43 - mkdir -p $fs/usr/share 2.44 - cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share 2.45 + mkdir -p $fs/usr/lib $fs/usr/share 2.46 + cp -a $install/usr/lib/*so* $fs/usr/lib 2.47 + cp -a $install/usr/bin $fs/usr 2.48 + cp -a $install/usr/share/$PACKAGE $fs/usr/share 2.49 + rm -rf $fs/usr/share/$PACKAGE/examples 2.50 # ffplay with it SDL dep go in a splited package 2.51 rm $fs/usr/bin/ffplay 2.52 }
3.1 --- a/ffplay/receipt Fri Jun 08 21:02:10 2012 +0200 3.2 +++ b/ffplay/receipt Fri Jun 08 21:03:02 2012 +0200 3.3 @@ -1,18 +1,19 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="ffplay" 3.7 -VERSION="0.10.3" 3.8 +VERSION="0.11.1" 3.9 CATEGORY="multimedia" 3.10 SHORT_DESC="Very simple and portable media player using the ffmpeg and the SDL library." 3.11 MAINTAINER="pascal.bellard@slitaz.org" 3.12 WEB_SITE="http://ffmpeg.org/" 3.13 WANTED="ffmpeg" 3.14 +TAGS="audio video player" 3.15 + 3.16 DEPENDS="ffmpeg libsdl" 3.17 -TAGS="audio video player" 3.18 3.19 # Rules to gen a SliTaz package suitable for Tazpkg. 3.20 genpkg_rules() 3.21 { 3.22 mkdir -p $fs/usr/bin 3.23 - cp -a $_pkg/usr/bin/ffplay $fs/usr/bin 3.24 + cp -a $install/usr/bin/ffplay $fs/usr/bin 3.25 }