2015-11-23 12:25:03 +01:00
|
|
|
{ stdenv, fetchurl, libtool, autoconf, automake, gnum4, linkStatic ? false }:
|
2011-12-12 18:06:31 +01:00
|
|
|
|
2015-04-18 19:32:52 +02:00
|
|
|
let
|
|
|
|
version = "1.0.6";
|
|
|
|
|
2016-02-13 15:52:02 +01:00
|
|
|
sharedLibrary = !(stdenv ? isStatic)
|
2015-11-17 16:16:14 +01:00
|
|
|
&& stdenv.system != "i686-cygwin" && !linkStatic;
|
2010-10-07 15:14:25 +02:00
|
|
|
|
2016-02-13 15:52:02 +01:00
|
|
|
darwinMakefile = fetchurl {
|
|
|
|
url = "https://gitweb.gentoo.org/repo/proj/prefix.git/plain/app-arch/bzip2/files/bzip2-1.0.6-Makefile-libbz2_dylib";
|
|
|
|
sha256 = "1lq6g98kfpwv2f7wn4sk8hzcf87dwf92gviq0b4691f5bvc9mawz";
|
|
|
|
};
|
2015-11-17 16:16:14 +01:00
|
|
|
in stdenv.mkDerivation {
|
2011-12-12 18:06:31 +01:00
|
|
|
name = "bzip2-${version}";
|
2010-10-07 15:14:25 +02:00
|
|
|
|
2003-11-04 09:36:32 +01:00
|
|
|
src = fetchurl {
|
2011-12-12 18:06:31 +01:00
|
|
|
url = "http://www.bzip.org/${version}/bzip2-${version}.tar.gz";
|
|
|
|
sha256 = "1kfrc7f0ja9fdn6j1y6yir6li818npy6217hvr3wzmnmzhs8z152";
|
2003-11-04 09:36:32 +01:00
|
|
|
};
|
2006-10-25 00:40:33 +02:00
|
|
|
|
2010-04-04 20:10:42 +02:00
|
|
|
crossAttrs = {
|
2015-11-23 12:25:03 +01:00
|
|
|
buildInputs = [ libtool autoconf automake gnum4 ];
|
|
|
|
patches = [
|
|
|
|
# original upstream for the autoconf patch is here:
|
|
|
|
# http://ftp.suse.com/pub/people/sbrabec/bzip2/for_downstream/bzip2-1.0.6-autoconfiscated.patch
|
|
|
|
# but we get the mingw-builds version of the patch, which fixes
|
|
|
|
# a few more issues
|
|
|
|
(fetchurl {
|
|
|
|
url = "https://raw.githubusercontent.com/niXman/mingw-builds/17ae841dcf6e72badad7941a06d631edaf687436/patches/bzip2/bzip2-1.0.6-autoconfiscated.patch";
|
|
|
|
sha256 = "1flbd3i8vg9kzq0a712qcg9j2c4ymnqvgd0ldyafpzvbqj1iicnp";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
patchFlags = "-p0";
|
|
|
|
postPatch = ''
|
2014-02-24 02:25:46 +01:00
|
|
|
sed -i -e '/<sys\\stat\.h>/s|\\|/|' bzip2.c
|
2010-04-04 20:10:42 +02:00
|
|
|
'';
|
2015-11-23 12:25:03 +01:00
|
|
|
preConfigure = "sh ./autogen.sh";
|
|
|
|
# clear native hooks that are not needed with autoconf
|
|
|
|
preBuild = "";
|
|
|
|
preInstall = "";
|
|
|
|
postInstall = "";
|
2010-04-04 20:10:42 +02:00
|
|
|
};
|
|
|
|
|
2015-11-20 14:32:58 +01:00
|
|
|
outputs = [ "dev" "bin" "static" ] ++ stdenv.lib.optional sharedLibrary "out";
|
2015-04-18 19:32:52 +02:00
|
|
|
|
2015-11-17 16:16:14 +01:00
|
|
|
preBuild = stdenv.lib.optionalString sharedLibrary ''
|
2016-02-13 15:52:02 +01:00
|
|
|
make -f ${if stdenv.isDarwin then "Makefile-libbz2_dylib" else "Makefile-libbz2_so"}
|
2015-11-17 16:16:14 +01:00
|
|
|
'';
|
2015-04-18 19:32:52 +02:00
|
|
|
|
2016-02-13 15:52:02 +01:00
|
|
|
preInstall = stdenv.lib.optionalString sharedLibrary (if !stdenv.isDarwin then ''
|
2015-04-18 19:32:52 +02:00
|
|
|
mkdir -p $out/lib
|
|
|
|
mv libbz2.so* $out/lib
|
2015-11-17 16:16:14 +01:00
|
|
|
( cd $out/lib &&
|
|
|
|
ln -s libbz2.so.1.0.? libbz2.so &&
|
|
|
|
ln -s libbz2.so.1.0.? libbz2.so.1
|
2015-04-18 19:32:52 +02:00
|
|
|
)
|
2016-02-13 15:52:02 +01:00
|
|
|
'' else ''
|
|
|
|
mkdir -p $out/lib
|
|
|
|
mv libbz2.*.dylib $out/lib
|
|
|
|
( cd $out/lib &&
|
|
|
|
ln -s libbz2.1.0.?.dylib libbz2.dylib &&
|
|
|
|
ln -s libbz2.1.0.?.dylib libbz2.1.dylib
|
|
|
|
)
|
|
|
|
'');
|
2010-10-07 15:14:25 +02:00
|
|
|
|
2015-11-20 14:32:58 +01:00
|
|
|
installFlags = [ "PREFIX=$(bin)" ];
|
2015-11-17 16:16:14 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
2015-11-20 14:32:58 +01:00
|
|
|
rm $bin/bin/bunzip2* $bin/bin/bzcat*
|
|
|
|
ln -s bzip2 $bin/bin/bunzip2
|
|
|
|
ln -s bzip2 $bin/bin/bzcat
|
|
|
|
|
|
|
|
mkdir "$static"
|
|
|
|
mv "$bin/lib" "$static/"
|
2015-11-17 16:16:14 +01:00
|
|
|
'';
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2016-02-11 13:56:38 +01:00
|
|
|
postPatch = ''
|
2015-11-24 11:59:39 +01:00
|
|
|
substituteInPlace Makefile --replace CC=gcc CC=cc
|
|
|
|
substituteInPlace Makefile-libbz2_so --replace CC=gcc CC=cc
|
2016-02-13 15:52:02 +01:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
cp ${darwinMakefile} Makefile-libbz2_dylib
|
|
|
|
substituteInPlace Makefile-libbz2_dylib \
|
|
|
|
--replace "CC=gcc" "CC=cc" \
|
|
|
|
--replace "PREFIX=/usr" "PREFIX=$out"
|
2015-11-17 16:16:14 +01:00
|
|
|
'';
|
2014-08-22 23:16:38 +02:00
|
|
|
|
2015-11-17 16:16:14 +01:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace Makefile --replace '$(PREFIX)/man' '$(PREFIX)/share/man'
|
|
|
|
'';
|
2010-12-06 18:48:52 +01:00
|
|
|
|
2015-11-17 16:16:14 +01:00
|
|
|
makeFlags = stdenv.lib.optional linkStatic "LDFLAGS=-static";
|
2009-11-08 01:32:12 +01:00
|
|
|
|
|
|
|
inherit linkStatic;
|
2010-10-07 15:14:25 +02:00
|
|
|
|
2008-01-31 11:11:09 +01:00
|
|
|
meta = {
|
2010-10-07 15:14:09 +02:00
|
|
|
homepage = "http://www.bzip.org";
|
|
|
|
description = "high-quality data compression program";
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [];
|
2008-01-31 11:11:09 +01:00
|
|
|
};
|
2003-11-04 09:36:32 +01:00
|
|
|
}
|