CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 2800 -
(hide annotations)
Fri Aug 17 20:47:12 2012 UTC (9 months ago) by acrux
File size: 1496 byte(s)
Fri Aug 17 20:47:12 2012 UTC (9 months ago) by acrux
File size: 1496 byte(s)
mplayer: new dep mpg123
| 1 | acrux | 2099 | # Description: Versatile media player and encoder/converter |
| 2 | # URL: http://www.mplayerhq.hu/ | ||
| 3 | # Maintainer: The CRUX PPC Team | ||
| 4 | # Packager: Matt Housh, jaeger at morpheus dot net | ||
| 5 | acrux | 2800 | # Depends on: expat, freetype, xorg-libxinerama, xorg-libxv, xorg-libxxf86dga, xorg-libxxf86vm, mpg123 |
| 6 | acrux | 2099 | # PPC!=upstream: |
| 7 | # | ||
| 8 | acrux | 2639 | # Nice to have: mplayer-ppc-codecs, libogg, libvorbis, cdparanoia, x264, faac, libsdl, cdparanoia, libdvdnav |
| 9 | acrux | 2099 | |
| 10 | name=mplayer | ||
| 11 | acrux | 2754 | version=1.1 |
| 12 | acrux | 2800 | release=2 |
| 13 | acrux | 2754 | source=(ftp://ftp1.mplayerhq.hu/MPlayer/releases/MPlayer-1.1.tar.xz \ |
| 14 | acrux | 2099 | http://www1.mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-1.tar.bz2 \ |
| 15 | mplayer.conf) | ||
| 16 | |||
| 17 | build() { | ||
| 18 | acrux | 2754 | cd MPlayer-$version |
| 19 | acrux | 2099 | |
| 20 | # mplayer decides optimizations at configure time | ||
| 21 | export CFLAGS="$(echo $CFLAGS | sed -e 's/-O[s0-3]/-O3/') -ffast-math -fomit-frame-pointer -fno-strict-aliasing" | ||
| 22 | |||
| 23 | acrux | 2639 | rm -f ffmpeg/mp_auto_pull |
| 24 | |||
| 25 | acrux | 2099 | ./configure --prefix=/usr --mandir=/usr/man \ |
| 26 | acrux | 2800 | --disable-mp3lib \ |
| 27 | acrux | 2639 | --codecsdir=/usr/share/$name/codecs |
| 28 | acrux | 2099 | |
| 29 | make | ||
| 30 | make DESTDIR=$PKG install | ||
| 31 | |||
| 32 | (cd $PKG/usr/man/man1; rm mencoder.1; ln -s mplayer.1.gz mencoder.1.gz) | ||
| 33 | |||
| 34 | # fonts | ||
| 35 | mkdir -p $PKG/usr/share/mplayer | ||
| 36 | cp -a $SRC/font-arial-iso-8859-1/font-arial-??-iso-8859-1 \ | ||
| 37 | $PKG/usr/share/mplayer | ||
| 38 | ln -s font-arial-14-iso-8859-1 $PKG/usr/share/mplayer/font | ||
| 39 | |||
| 40 | # config | ||
| 41 | mkdir -p $PKG/etc/mplayer | ||
| 42 | install -m 644 $SRC/mplayer.conf $PKG/etc/mplayer/ | ||
| 43 | install -m 644 etc/input.conf $PKG/etc/mplayer/ | ||
| 44 | |||
| 45 | # finish up | ||
| 46 | rmdir $PKG/usr/lib | ||
| 47 | find $PKG -name '*.desc' | xargs chmod g-w | ||
| 48 | } |