82e678362f
svn path=/nixpkgs/trunk/; revision=4335
13 lines
202 B
Bash
13 lines
202 B
Bash
source $stdenv/setup || exit 1
|
|
|
|
set -e
|
|
|
|
tar jxvf $src
|
|
cd clisp-*
|
|
./configure builddir --prefix=$out
|
|
cd builddir
|
|
./makemake --with-dynamic-ffi --prefix=$out > Makefile
|
|
make config.lisp
|
|
make
|
|
make install
|