287edecf42
* Started moving the gcc wrapper stuff out of stdenv. * Added octavefront and rna. svn path=/nixpkgs/trunk/; revision=814
12 lines
154 B
Bash
Executable file
12 lines
154 B
Bash
Executable file
#! /bin/sh -e
|
|
|
|
buildinputs=""
|
|
. $stdenv/setup
|
|
|
|
tar xvfz $src
|
|
cd ncurses-*
|
|
./configure --prefix=$out --with-shared
|
|
make
|
|
make install
|
|
strip -S $out/lib/*.a
|