wok-next diff ffmpeg-svn/receipt @ rev 5569
Up: ffmpeg-svn; mktemp patch to make it busybox compatible and drop coreutils-* build_depends
author | Rohit Joshi <jozee@slitaz.org> |
---|---|
date | Fri May 14 10:25:33 2010 -0400 (2010-05-14) |
parents | 865c0b9402ab |
children | 60eee2a3b52a |
line diff
1.1 --- a/ffmpeg-svn/receipt Fri May 14 16:01:18 2010 +0200 1.2 +++ b/ffmpeg-svn/receipt Fri May 14 10:25:33 2010 -0400 1.3 @@ -1,13 +1,13 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="ffmpeg-svn" 1.7 -VERSION="22914" 1.8 +VERSION="23117" 1.9 CATEGORY="multimedia" 1.10 SHORT_DESC="Record, convert and stream audio and video." 1.11 MAINTAINER="jozee@slitaz.org" 1.12 WEB_SITE="http://ffmpeg.org/" 1.13 DEPENDS="bzlib freetype imlib2 alsa-lib jack-audio-connection-kit zlib" 1.14 -BUILD_DEPENDS="subversion imlib2-dev freetype-dev libsdl-dev zlib-dev coreutils-file-format coreutils-file-special" 1.15 +BUILD_DEPENDS="subversion imlib2-dev freetype-dev libsdl-dev zlib-dev " 1.16 PROVIDE="ffmpeg" 1.17 SUGGESTED="ffplay" 1.18 TAGS="audio video convert stream" 1.19 @@ -23,13 +23,14 @@ 1.20 elif [ -f $TARBALL ]; then 1.21 tar xzf $TARBALL 1.22 else 1.23 - svn checkout -r 'HEAD' svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg && 1.24 + svn checkout -r "$VERSION" svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg && 1.25 tar czf $TARBALL ffmpeg 1.26 fi 1.27 1.28 - cd ffmpeg 1.29 - sed -i 's/mktemp -u/mktemp/' configure 1.30 - 1.31 + cd ffmpeg 1.32 + # make busybox compatible or add coreutils-file-format coreutils-file-special in BUILD_DEPENDS if patch/configure fails 1.33 + patch -Np1 -i ../../stuff/$PACKAGE-$VERSION-mktemp.patch 1.34 + 1.35 ./configure \ 1.36 --prefix=/usr \ 1.37 --enable-gpl \