mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 11:22:58 +00:00
libgsm: 1.0.13 -> 1.0.14 & improve cross platform support
This commit is contained in:
parent
74b2253ef8
commit
f7c72d38f6
@ -1,45 +1,55 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl
|
||||||
|
, staticSupport ? false # Compile statically (support for packages that look for the static object)
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (stdenv) isDarwin;
|
||||||
|
inherit (stdenv.lib) optional optionalString;
|
||||||
|
in
|
||||||
|
|
||||||
with stdenv.lib;
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gsm-${version}";
|
name = "gsm-${version}";
|
||||||
version = "1.0.13";
|
version = "1.0.14";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.quut.com/gsm/${name}.tar.gz";
|
url = "http://www.quut.com/gsm/${name}.tar.gz";
|
||||||
sha256 = "1bcjl2h60gvr1dc5a963h3vnz9zl6n8qrfa3qmb2x3229lj1iiaj";
|
sha256 = "0b1mx69jq88wva3wk0hi6fcl5a52qhnq2f9p3f3jdh5k61ma252q";
|
||||||
};
|
};
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
# Fix include directory
|
# Fix include directory
|
||||||
sed -e 's,$(GSM_INSTALL_ROOT)/inc,$(GSM_INSTALL_ROOT)/include/gsm,' -i Makefile
|
sed -e 's,$(GSM_INSTALL_ROOT)/inc,$(GSM_INSTALL_ROOT)/include/gsm,' -i Makefile
|
||||||
|
'' + optionalString (!staticSupport) (
|
||||||
makeFlags="$makeFlags INSTALL_ROOT=$out"
|
(if isDarwin then ''
|
||||||
|
# Build dylib on Darwin
|
||||||
# Build shared library instead of static
|
sed -e 's,libgsm.a,libgsm.dylib,' -i Makefile
|
||||||
sed -e 's,-c -O2 -DNeedFunctionPrototypes=1,-c -O2 -fPIC -DNeedFunctionPrototypes=1,' -i Makefile
|
sed -e 's,$(AR) $(ARFLAGS) $(LIBGSM) $(GSM_OBJECTS),$(LD) -o $(LIBGSM) -dynamiclib -install_name $(GSM_INSTALL_ROOT)/$(LIBGSM) $(GSM_OBJECTS) -lc,' -i Makefile
|
||||||
sed -e 's,libgsm.a,libgsm.so,' -i Makefile
|
'' else ''
|
||||||
sed -e 's/$(AR) $(ARFLAGS) $(LIBGSM) $(GSM_OBJECTS)/$(LD) -shared -Wl,-soname,libgsm.so -o $(LIBGSM) $(GSM_OBJECTS) -lc/' -i Makefile
|
# Build ELF shared object by default
|
||||||
sed -e 's,$(RANLIB) $(LIBGSM),,' -i Makefile
|
sed -e 's,libgsm.a,libgsm.so,' -i Makefile
|
||||||
'';
|
sed -e 's/$(AR) $(ARFLAGS) $(LIBGSM) $(GSM_OBJECTS)/$(LD) -shared -Wl,-soname,libgsm.so -o $(LIBGSM) $(GSM_OBJECTS) -lc/' -i Makefile
|
||||||
|
'') + ''
|
||||||
|
# Remove line that is unused when building shared libraries
|
||||||
|
sed -e 's,$(RANLIB) $(LIBGSM),,' -i Makefile
|
||||||
|
''
|
||||||
|
);
|
||||||
|
|
||||||
makeFlags = [
|
makeFlags = [
|
||||||
''SHELL=${stdenv.shell}''
|
"SHELL=${stdenv.shell}"
|
||||||
];
|
"INSTALL_ROOT=$(out)"
|
||||||
|
] ++ optional (stdenv.cc.cc.isClang or false) "CC=clang";
|
||||||
|
|
||||||
preInstall = ''
|
preInstall = "mkdir -p $out/{bin,lib,man/man1,man/man3,include/gsm}";
|
||||||
mkdir -p "$out/"{bin,lib,man/man1,man/man3,include/gsm}
|
|
||||||
'';
|
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = "-fPIC";
|
NIX_CFLAGS_COMPILE = optional (!staticSupport) "-fPIC";
|
||||||
|
|
||||||
parallelBuild = false;
|
parallelBuild = false;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Lossy speech compression codec";
|
description = "Lossy speech compression codec";
|
||||||
homepage = http://www.quut.com/gsm/;
|
homepage = http://www.quut.com/gsm/;
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ codyopel raskin ];
|
maintainers = with maintainers; [ codyopel raskin ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user