eeabccf147
* Disabled gtkspell support in pan since it (and it alone) has a conflict with the system glibc. * Use CPU detection in MPlayer so that it also works on systems with different CPUs than the build system's. svn path=/nixpkgs/trunk/; revision=206
23 lines
650 B
Bash
23 lines
650 B
Bash
#! /bin/sh
|
|
|
|
. $stdenv/setup || exit 1
|
|
|
|
envpkgs="$freetype"
|
|
. $setenv
|
|
|
|
tar xvfj $src || exit 1
|
|
tar xvfj $fonts || exit 1
|
|
cd MPlayer-* || exit 1
|
|
./configure --prefix=$out --with-win32libdir=$win32codecs \
|
|
--with-reallibdir=$win32codecs \
|
|
--disable-sdl --disable-esd --disable-xanim --disable-cdparanoia --disable-directfb \
|
|
--disable-lirc --disable-svga --disable-libdv \
|
|
--disable-vorbis --disable-png --disable-jpeg --disable-gif \
|
|
--enable-runtime-cpudetection \
|
|
|| exit 1
|
|
make || exit 1
|
|
make install || exit 1
|
|
cp -p ../font-arial-iso-8859-1/font-arial-18-iso-8859-1/* $out/share/mplayer/font || exit 1
|
|
|
|
echo $envpkgs > $out/envpkgs || exit 1
|