#!/bin/sh # Heavily based on the Slackware 11.0 SlackBuild # Requirements: lame, xvid, imlib2, a52, libdc1394, libraw1394, libtheora # Requirements: faad2, faac, id3lib, libGSM, LibDts, Mpeg4IP, x264, lzo # Requirements: libnut, Amrnb, Amrwb # http://ffmpeg.sourceforge.net/index.php # http://www.3gpp.org/ftp/Specs/2004-03/Rel-5/26_series/ CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package/ffmpeg NAME=ffmpeg VERSION=`date +%Y%m%d` ARCH=${ARCH:-i686} BUILD=1sl if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi mkdir -p $PKG/usr/bin cd $TMP svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg cd $TMP/$NAME find . -perm 777 -exec chmod 755 {} \; find . -perm 775 -exec chmod 755 {} \; find . -perm 555 -exec chmod 755 {} \; find . -perm 666 -exec chmod 644 {} \; find . -perm 664 -exec chmod 644 {} \; find . -perm 444 -exec chmod 644 {} \; chown -R root:root . ./configure --prefix=/usr \ --mandir=/usr/man \ --enable-shared \ --disable-debug \ --enable-gpl \ --enable-pp \ --enable-swscaler \ --enable-dc1394 \ --enable-liba52 \ --enable-liba52bin \ --enable-libfaac \ --enable-libfaad \ --enable-libfaadbin \ --enable-libgsm \ --enable-libmp3lame \ --enable-libnut \ --enable-libogg \ --enable-libtheora \ --enable-libvorbis \ --enable-x264 \ --enable-xvid \ --enable-x11grab \ --enable-pthreads \ --enable-libamr-nb \ --enable-libamr-wb \ --arch=i686 make make -C doc all mkdir -p $PKG/usr/doc/$NAME-$VERSION cp [A-Z]* doc/TODO doc/*.{html,txt} $PKG/usr/doc/$NAME-$VERSION cp doc/*.1 $PKG/usr/man/man1 make install DESTDIR=$PKG mkdir $PKG/etc cp -a doc/ffserver.conf $PKG/etc/ffserver.conf.new cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "current ar archive" | cut -f 1 -d : | xargs strip -g 2> /dev/null find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi