2006-02-26 06:32:07 +00:00
|
|
|
# Description: Versatile media player and encoder/converter
|
2006-02-23 15:26:10 +00:00
|
|
|
# URL: http://www.mplayerhq.hu/
|
2008-02-03 16:33:50 -05:00
|
|
|
# Packager: Matt Housh, jaeger at morpheus dot net
|
2008-06-19 22:46:02 +10:00
|
|
|
# Maintainer: Lucas Hazel, lucas at die dot net dot au
|
2007-04-27 13:32:55 -05:00
|
|
|
# Depends on: expat, xorg-libxinerama, xorg-libxv, xorg-libxxf86dga, xorg-libxxf86vm
|
2009-04-19 15:46:48 +10:00
|
|
|
# Nice to have: libsdl, libjpeg, libpng, lame, zlib, libogg, libvorbis, cdparanoia, win32-essential-codecs, faac, x264, libdvdnav
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=mplayer
|
2009-07-25 22:17:42 +10:00
|
|
|
version=export-2009-07-25
|
2008-12-03 01:08:54 +11:00
|
|
|
release=1
|
2009-07-25 22:17:42 +10:00
|
|
|
source=(http://crux.nu/~lucas/files/$name-$version.tar.bz2
|
2008-12-03 01:08:54 +11:00
|
|
|
http://www1.mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-1.tar.bz2
|
2006-06-13 13:27:41 +00:00
|
|
|
mplayer.conf)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2008-04-20 15:34:16 -04:00
|
|
|
cd $name-$version
|
2008-02-05 11:24:18 -05:00
|
|
|
|
2008-03-22 21:01:12 -04:00
|
|
|
# Keep in line with mplayer CFLAGS, but allow people to set their own march/mtune values.
|
2009-07-25 22:17:42 +10:00
|
|
|
#export CFLAGS="$(echo $CFLAGS | sed -e 's/-O[s0-3]/-O3/') -ffast-math -fomit-frame-pointer"
|
2006-02-23 15:26:10 +00:00
|
|
|
./configure --prefix=/usr \
|
2009-07-25 22:17:42 +10:00
|
|
|
--mandir=/usr/man \
|
2009-07-25 23:10:16 +10:00
|
|
|
--codecsdir=/usr/lib/win32 \
|
2009-07-25 22:17:42 +10:00
|
|
|
--enable-largefiles
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
(cd $PKG/usr/man/man1; rm mencoder.1; ln -s mplayer.1.gz mencoder.1.gz)
|
|
|
|
|
|
|
|
# fonts
|
2008-06-07 01:25:44 -04:00
|
|
|
mkdir -p $PKG/usr/share/mplayer
|
2006-02-23 15:26:10 +00:00
|
|
|
cp -a $SRC/font-arial-iso-8859-1/font-arial-??-iso-8859-1 \
|
2008-06-07 01:25:44 -04:00
|
|
|
$PKG/usr/share/mplayer
|
|
|
|
ln -s font-arial-14-iso-8859-1 $PKG/usr/share/mplayer/font
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
# config
|
|
|
|
cp $SRC/mplayer.conf $PKG/usr/etc/mplayer/
|
|
|
|
cp etc/input.conf $PKG/usr/etc/mplayer/
|
|
|
|
|
|
|
|
# finish up
|
2008-12-03 01:08:54 +11:00
|
|
|
rmdir $PKG/usr/lib
|
2009-07-25 22:17:42 +10:00
|
|
|
find $PKG -name '*.desc' | xargs chmod g-w
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|