3
0
Fork 0
forked from mirrors/nixpkgs

Making lynx, yacas and alsa-lib crossbuild

svn path=/nixpkgs/branches/stdenv-updates/; revision=23130
This commit is contained in:
Lluís Batlle i Rossell 2010-08-11 20:11:12 +00:00
parent 3ece765eed
commit 039b660b5b
3 changed files with 27 additions and 1 deletions

View file

@ -15,6 +15,7 @@ stdenv.mkDerivation {
configureFlags = if sslSupport then "--with-ssl" else "";
buildInputs = [ ncurses ] ++ stdenv.lib.optional sslSupport openssl;
buildNativeInputs = [ ncurses ];
meta = {
homepage = http://lynx.isc.org/;

View file

@ -9,10 +9,29 @@ stdenv.mkDerivation rec {
};
# Perl is only for the documentation
buildInputs = [ perl ];
buildNativeInputs = [ perl ];
patches = [ ./gcc43.patch ];
crossAttrs = {
# Trick to get host-built programs needed for the cross-build.
# If yacas had proper makefiles, this would not be needed.
preConfigure = ''
./configure
pushd src
make mkfastprimes
cp mkfastprimes ../..
popd
pushd manmake
make manripper removeduplicates
cp manripper removeduplicates ../..
popd
'';
preBuild = ''
cp ../mkfastprimes ../manripper ../removeduplicates src
'';
};
meta = {
description = "Easy to use, general purpose Computer Algebra System";
homepage = http://yacas.sourceforge.net/;

View file

@ -14,6 +14,12 @@ stdenv.mkDerivation rec {
postPatch = ''
sed -i -e 's|//int snd_pcm_mixer_element(snd_pcm_t \*pcm, snd_mixer_t \*mixer, snd_mixer_elem_t \*\*elem);|/\*int snd_pcm_mixer_element(snd_pcm_t \*pcm, snd_mixer_t \*mixer, snd_mixer_elem_t \*\*elem);\*/|' include/pcm.h
'';
crossAttrs = {
patchPhase = ''
sed -i s/extern/static/g include/iatomic.h
'';
};
meta = {
description = "ALSA, the Advanced Linux Sound Architecture libraries";