#!/bin/sh # Heavily based on the Slackware 11.0 SlackBuild # Requirements: lame, libdvdread, libdvdcss, ladspa, libdv, libdts, toolame, xvidcore, live555 # jack-audio, twolame, libmpcdec, faac, faad, mpeg4ip, speex # http://www.MPlayerHQ.hu # Packager Vincenzi Loris - slacky@slacky.it CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package NAME=mplayer VERSION=1.0rc1try3 ARCH=${ARCH:-i686} BUILD=1sl SKIN=Blue SKINV=1.7 FONT=font-arial-iso-8859-1 if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686 -fomit-frame-pointer" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686 -fomit-frame-pointer" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xjvf $CWD/MPlayer-1.0rc1.tar.bz2 tar xjvf $CWD/$SKIN-$SKINV.tar.bz2 tar xjvf $CWD/$FONT.tar.bz2 cd MPlayer-1.0rc1 find . -perm 775 -exec chmod 755 {} \; find . -perm 664 -exec chmod 644 {} \; cat $CWD/asmrules_fix_20061231.diff | patch -p0 -E --backup --verbose cat $CWD/cddb_fix_20070605.diff | patch -p0 -E --backup --verbose cd $TMP/MPlayer-1.0rc1/libavcodec mkdir amr mkdir amr_float mkdir amrwb_float cd amr unzip $CWD/26073-530.zip unzip 26073-530_ANSI_C_source_code.zip mv c-code/* . cd ../amr_float unzip $CWD/26104-540.zip unzip 26104-540_ANSI_C_source_code.zip mv c-code/* . cd ../amrwb_float unzip $CWD/26204-530.zip unzip 26204-530_ANSI-C_source_code.zip mv c-code/* . cd $TMP/MPlayer-1.0rc1 chown -R root:root . CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --confdir=/etc/mplayer \ --enable-gui \ --enable-menu \ --language=it \ --with-livelibdir=/usr/lib/live \ --with-codecsdir=/usr/lib/codecs \ --with-reallibdir=/usr/lib/codecs \ --with-xanimlibdir=/usr/lib/codecs read make make install DESTDIR=$PKG mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a AUTHORS ChangeLog DOCS LICENSE README $PKG/usr/doc/$NAME-$VERSION mkdir -p $PKG/usr/share/applications cp $CWD/mplayer.desktop $PKG/usr/share/applications mkdir -p $PKG/usr/share/pixmaps cp Gui/mplayer/pixmaps/MPlayer_mini.xpm $PKG/usr/share/pixmaps/mplayer.xpm 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 $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/share/mplayer/Skin/default mv -f $TMP/$SKIN/* $PKG/usr/share/mplayer/Skin/default mv -f $TMP/$FONT/font-arial-18-iso-8859-1/* $PKG/usr/share/mplayer/font mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc 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