2011-12-12 17:06:31 +00:00
|
|
|
{ stdenv, fetchurl, linkStatic ? false }:
|
|
|
|
|
2015-04-18 18:32:52 +01:00
|
|
|
let
|
|
|
|
version = "1.0.6";
|
|
|
|
|
2015-11-17 15:16:14 +00:00
|
|
|
sharedLibrary = !stdenv.isDarwin && !(stdenv ? isStatic)
|
|
|
|
&& stdenv.system != "i686-cygwin" && !linkStatic;
|
2010-10-07 14:14:25 +01:00
|
|
|
|
2015-11-17 15:16:14 +00:00
|
|
|
in stdenv.mkDerivation {
|
2011-12-12 17:06:31 +00:00
|
|
|
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
|
|
|
|
2010-04-04 19:10:42 +01:00
|
|
|
crossAttrs = {
|
|
|
|
patchPhase = ''
|
2014-02-24 01:25:46 +00:00
|
|
|
sed -i -e '/<sys\\stat\.h>/s|\\|/|' bzip2.c
|
2010-04-04 19:10:42 +01:00
|
|
|
sed -i -e 's/CC=gcc/CC=${stdenv.cross.config}-gcc/' \
|
|
|
|
-e 's/AR=ar/AR=${stdenv.cross.config}-ar/' \
|
|
|
|
-e 's/RANLIB=ranlib/RANLIB=${stdenv.cross.config}-ranlib/' \
|
|
|
|
-e 's/bzip2recover test/bzip2recover/' \
|
|
|
|
Makefile*
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-11-20 13:32:58 +00:00
|
|
|
outputs = [ "dev" "bin" "static" ] ++ stdenv.lib.optional sharedLibrary "out";
|
2015-04-18 18:32:52 +01:00
|
|
|
|
2015-11-17 15:16:14 +00:00
|
|
|
preBuild = stdenv.lib.optionalString sharedLibrary ''
|
|
|
|
make -f Makefile-libbz2_so
|
|
|
|
'';
|
2015-04-18 18:32:52 +01:00
|
|
|
|
2015-11-17 15:16:14 +00:00
|
|
|
preInstall = stdenv.lib.optionalString sharedLibrary ''
|
2015-04-18 18:32:52 +01:00
|
|
|
mkdir -p $out/lib
|
|
|
|
mv libbz2.so* $out/lib
|
2015-11-17 15:16:14 +00:00
|
|
|
( cd $out/lib &&
|
|
|
|
ln -s libbz2.so.1.0.? libbz2.so &&
|
|
|
|
ln -s libbz2.so.1.0.? libbz2.so.1
|
2015-04-18 18:32:52 +01:00
|
|
|
)
|
|
|
|
'';
|
2010-10-07 14:14:25 +01:00
|
|
|
|
2015-11-20 13:32:58 +00:00
|
|
|
installFlags = [ "PREFIX=$(bin)" ];
|
2015-11-17 15:16:14 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2015-11-20 13:32:58 +00: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 15:16:14 +00:00
|
|
|
'';
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2015-11-17 15:16:14 +00:00
|
|
|
patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace Makefile --replace 'CC=gcc' 'CC=clang'
|
|
|
|
'';
|
2014-08-22 22:16:38 +01:00
|
|
|
|
2015-11-17 15:16:14 +00:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace Makefile --replace '$(PREFIX)/man' '$(PREFIX)/share/man'
|
|
|
|
'';
|
2010-12-06 17:48:52 +00:00
|
|
|
|
2015-11-17 15:16:14 +00:00
|
|
|
makeFlags = stdenv.lib.optional linkStatic "LDFLAGS=-static";
|
2009-11-08 00:32:12 +00:00
|
|
|
|
|
|
|
inherit linkStatic;
|
2010-10-07 14:14:25 +01:00
|
|
|
|
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
|
|
|
}
|