2004-03-11 18:26:14 +01:00
|
|
|
set -x
|
|
|
|
|
2004-03-05 11:13:23 +01:00
|
|
|
buildinputs="$autoconf $g77 $texinfo $bison $flex $gperf $rna $aterm"
|
|
|
|
. $stdenv/setup
|
|
|
|
|
2004-03-11 18:26:14 +01:00
|
|
|
g77orig=$(cat $g77/nix-support/orig-gcc)
|
2004-03-05 11:13:23 +01:00
|
|
|
export NIX_LDFLAGS="-rpath $g77orig/lib $NIX_LDFLAGS"
|
|
|
|
|
2004-03-11 18:26:14 +01:00
|
|
|
export NIX_STRIP_DEBUG=
|
|
|
|
export NIX_CFLAGS_COMPILE="-g $NIX_CFLAGS_COMPILE"
|
|
|
|
|
2004-03-05 11:13:23 +01:00
|
|
|
tar xvfz $src
|
|
|
|
cd octavefront-*
|
|
|
|
./autogen.sh
|
|
|
|
./configure --prefix=$out --disable-readline --enable-rna=$rna --enable-aterm
|
|
|
|
make
|
|
|
|
make install
|
2004-03-11 18:26:14 +01:00
|
|
|
#strip -S $out/lib/*/*.a
|