03dca65e08
svn path=/nixpkgs/trunk/; revision=5498
21 lines
439 B
Bash
21 lines
439 B
Bash
source $stdenv/setup
|
|
|
|
postUnpack() {
|
|
unpackFile $fonts
|
|
}
|
|
postUnpack=postUnpack
|
|
|
|
configureFlags="\
|
|
--with-win32libdir=$win32codecs \
|
|
--with-reallibdir=$win32codecs \
|
|
--enable-runtime-cpudetection \
|
|
--enable-x11 --with-x11incdir=/no-such-dir --with-x11libdir=/no-such-dir
|
|
$configureFlags"
|
|
|
|
postInstall() {
|
|
cp -p ../font-arial-iso-8859-1/font-arial-18-iso-8859-1/* $out/share/mplayer/font
|
|
}
|
|
postInstall=postInstall
|
|
|
|
genericBuild
|