SDL_image: update to version 1.2.12
This commit is contained in:
@@ -1,41 +1,27 @@
|
||||
{ stdenv, fetchhg, SDL, libpng, libjpeg, libtiff, libungif, libXpm, automake,
|
||||
autoconf, pkgconfig }:
|
||||
{ stdenv, fetchurl, SDL, libpng, libjpeg, libtiff, libungif, libXpm }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "SDL_image";
|
||||
version = "1.2.10-20110925";
|
||||
name = "SDL_image-1.2.12";
|
||||
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchhg {
|
||||
url = http://hg.libsdl.org/SDL_image;
|
||||
tag = "bb611e7cb1e5";
|
||||
sha256 = "0003inlvvmlc2fyrzy01lwhhfb90ppsar2skaa7x6rhmpc71dakz";
|
||||
src = fetchurl {
|
||||
url = "http://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz";
|
||||
sha256 = "16an9slbb8ci7d89wakkmyfvp7c0cval8xw4hkg0842nhhlp540b";
|
||||
};
|
||||
|
||||
buildInputs = [SDL libpng libjpeg libtiff libungif libXpm];
|
||||
|
||||
buildNativeInputs = [ automake autoconf pkgconfig ];
|
||||
|
||||
patches = [ ./jpeg-linux.diff ];
|
||||
|
||||
preConfigure = ''
|
||||
./autogen.sh
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
sed -i -e 's,"SDL.h",<SDL/SDL.h>,' \
|
||||
-e 's,"SDL_version.h",<SDL/SDL_version.h>,' \
|
||||
-e 's,"begin_code.h",<SDL/begin_code.h>,' \
|
||||
-e 's,"close_code.h",<SDL/close_code.h>,' \
|
||||
-e 's,"SDL_version.h",<SDL/SDL_version.h>,' \
|
||||
-e 's,"begin_code.h",<SDL/begin_code.h>,' \
|
||||
-e 's,"close_code.h",<SDL/close_code.h>,' \
|
||||
$out/include/SDL/SDL_image.h
|
||||
|
||||
ln -sv $out/include/SDL/SDL_image.h $out/include/
|
||||
ln -sv SDL/SDL_image.h $out/include/SDL_image.h
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "SDL image library";
|
||||
homepage = http://www.libsdl.org/projects/SDL_image/;
|
||||
homepage = "http://www.libsdl.org/projects/SDL_image/";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user