d811b4c9d8
* Zapping/VLC/MPlayer: use libXv. * MPlayer: upgrade to 1.0pre4. * Zapping: add libXext to the rpath. I don't understand why this is necessary. Zapping doesn't itself link against libXext, though some of its dependencies do. (Maybe this is due to `--export-dynamic'?) svn path=/nixpkgs/trunk/; revision=990
19 lines
341 B
Bash
19 lines
341 B
Bash
. $stdenv/setup
|
|
|
|
postUnpack() {
|
|
unpackFile $fonts
|
|
}
|
|
postUnpack=postUnpack
|
|
|
|
configureFlags="\
|
|
--with-win32libdir=$win32codecs \
|
|
--with-reallibdir=$win32codecs \
|
|
--enable-runtime-cpudetection"
|
|
|
|
postInstall() {
|
|
cp -p ../font-arial-iso-8859-1/font-arial-18-iso-8859-1/* $out/share/mplayer/font
|
|
}
|
|
postInstall=postInstall
|
|
|
|
genericBuild
|