2015-11-23 11:25:03 +00:00
|
|
|
{ stdenv, fetchurl, libtool, autoconf, automake, gnum4, linkStatic ? false }:
|
2011-12-12 17:06:31 +00:00
|
|
|
|
2015-11-17 15:16:14 +00:00
|
|
|
let
|
|
|
|
version = "1.0.6";
|
2015-11-23 11:23:37 +00:00
|
|
|
|
2016-02-13 14:52:02 +00:00
|
|
|
sharedLibrary = !(stdenv ? isStatic)
|
2015-11-23 11:23:37 +00:00
|
|
|
&& stdenv.system != "i686-cygwin" && !linkStatic;
|
|
|
|
|
2016-02-13 14:52:02 +00: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 15:16:14 +00:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "bzip2-${version}";
|
2010-10-07 14:14:25 +01:00
|
|
|
|
2003-11-04 08:36:32 +00:00
|
|
|
src = fetchurl {
|
2011-12-12 17:06:31 +00:00
|
|
|
url = "http://www.bzip.org/${version}/bzip2-${version}.tar.gz";
|
|
|
|
sha256 = "1kfrc7f0ja9fdn6j1y6yir6li818npy6217hvr3wzmnmzhs8z152";
|
2003-11-04 08:36:32 +00:00
|
|
|
};
|
2006-10-24 23:40:33 +01:00
|
|
|
|
2015-11-04 08:26:11 +00:00
|
|
|
crossAttrs = {
|
2015-11-23 11:25:03 +00: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 = ''
|
2015-11-04 08:26:11 +00:00
|
|
|
sed -i -e '/<sys\\stat\.h>/s|\\|/|' bzip2.c
|
|
|
|
'';
|
2015-11-23 11:25:03 +00:00
|
|
|
preConfigure = "sh ./autogen.sh";
|
|
|
|
# clear native hooks that are not needed with autoconf
|
|
|
|
preBuild = "";
|
|
|
|
preInstall = "";
|
|
|
|
postInstall = "";
|
2015-11-04 08:26:11 +00:00
|
|
|
};
|
2010-10-07 14:14:25 +01:00
|
|
|
|
2015-11-23 11:23:37 +00:00
|
|
|
preBuild = stdenv.lib.optionalString sharedLibrary ''
|
2016-02-13 14:52:02 +00:00
|
|
|
make -f ${if stdenv.isDarwin then "Makefile-libbz2_dylib" else "Makefile-libbz2_so"}
|
2015-11-23 11:23:37 +00:00
|
|
|
'';
|
|
|
|
|
2016-02-13 14:52:02 +00:00
|
|
|
preInstall = stdenv.lib.optionalString sharedLibrary (if !stdenv.isDarwin then ''
|
2015-11-23 11:23:37 +00:00
|
|
|
mkdir -p $out/lib
|
|
|
|
mv libbz2.so* $out/lib
|
|
|
|
( cd $out/lib &&
|
|
|
|
ln -s libbz2.so.1.0.? libbz2.so &&
|
|
|
|
ln -s libbz2.so.1.0.? libbz2.so.1
|
|
|
|
)
|
2016-02-13 14:52:02 +00: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
|
|
|
|
)
|
|
|
|
'');
|
2015-11-23 11:23:37 +00:00
|
|
|
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
rm $out/bin/bunzip2* $out/bin/bzcat*
|
|
|
|
ln -s bzip2 $out/bin/bunzip2
|
|
|
|
ln -s bzip2 $out/bin/bzcat
|
|
|
|
'';
|
|
|
|
|
2016-02-11 12:56:38 +00:00
|
|
|
postPatch = ''
|
2015-11-24 10:59:39 +00:00
|
|
|
substituteInPlace Makefile --replace CC=gcc CC=cc
|
|
|
|
substituteInPlace Makefile-libbz2_so --replace CC=gcc CC=cc
|
2016-02-13 14:52:02 +00: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-23 11:23:37 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace Makefile --replace '$(PREFIX)/man' '$(PREFIX)/share/man'
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = stdenv.lib.optional linkStatic "LDFLAGS=-static";
|
|
|
|
|
|
|
|
inherit linkStatic;
|
|
|
|
|
2008-01-31 10:11:09 +00:00
|
|
|
meta = {
|
2010-10-07 14:14:09 +01:00
|
|
|
homepage = "http://www.bzip.org";
|
|
|
|
description = "high-quality data compression program";
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [];
|
2008-01-31 10:11:09 +00:00
|
|
|
};
|
2003-11-04 08:36:32 +00:00
|
|
|
}
|