xvidcore: refactor & 1.3.2 -> 1.3.3

This commit is contained in:
codyopel 2015-02-17 02:01:10 -05:00
parent aeb0db3def
commit 1b26e25845
1 changed files with 24 additions and 20 deletions

View File

@ -1,42 +1,46 @@
{ stdenv, fetchurl, nasm, autoconf, automake, libtool }: { stdenv, fetchurl, yasm, autoconf, automake, libtool }:
with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "xvidcore-1.3.2"; name = "xvidcore-${version}";
version = "1.3.3";
src = fetchurl { src = fetchurl {
url = "http://downloads.xvid.org/downloads/${name}.tar.bz2"; url = "http://downloads.xvid.org/downloads/${name}.tar.bz2";
sha256 = "1x0b2rq6fv99ramifhkakycd0prjc93lbzrffbjgjwg7w4s17hfn"; sha256 = "0m5g75qvapr7xpywg6a83v5x19kw1nm9l2q48lg7jvvpba0bmqdh";
}; };
preConfigure = '' preConfigure = ''
# Configure script is not in the root of the source directory
cd build/generic cd build/generic
'' + stdenv.lib.optionalString stdenv.isDarwin '' '' + optionalString stdenv.isDarwin ''
# Undocumented darwin hack
substituteInPlace configure --replace "-no-cpp-precomp" "" substituteInPlace configure --replace "-no-cpp-precomp" ""
''; '';
configureFlags = stdenv.lib.optionals stdenv.isDarwin configureFlags = [ ]
[ "--enable-macosx_module" "--disable-assembly" ]; # Undocumented darwin hack (assembly is probably disabled due to an
# issue with nasm, however yasm is now used)
++ optional stdenv.isDarwin "--enable-macosx_module --disable-assembly";
buildInputs = [ nasm ] nativeBuildInputs = [ ]
++ stdenv.lib.optionals stdenv.isDarwin [ autoconf automake libtool ]; ++ optional (!stdenv.isDarwin) yasm;
# don't delete the '.a' files on darwin -- they're needed to compile ffmpeg buildInputs = [ ]
# (and perhaps other things) # Undocumented darwin hack
postInstall = stdenv.lib.optionalString (!stdenv.isDarwin) '' ++ optionals stdenv.isDarwin [ autoconf automake libtool ];
# Don't remove static libraries (e.g. 'libs/*.a') on darwin. They're needed to
# compile ffmpeg (and perhaps other things).
postInstall = optionalString (!stdenv.isDarwin) ''
rm $out/lib/*.a rm $out/lib/*.a
'' + ''
cd $out/lib
ln -s *.so.4.* libxvidcore.so
if [ ! -e libxvidcore.so.4 ]; then
ln -s *.so.4.* libxvidcore.so.4
fi
''; '';
meta = with stdenv.lib; { meta = {
description = "MPEG-4 video codec for PC"; description = "MPEG-4 video codec for PC";
homepage = http://www.xvid.org/; homepage = https://www.xvid.com/;
license = licenses.gpl2; license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 ]; maintainers = with maintainers; [ codyopel lovek323 ];
platforms = platforms.all; platforms = platforms.all;
}; };
} }