about summary refs log tree commit diff
path: root/pkgs/development/interpreters/clisp/builder.sh
blob: 1c6c5a6bb3d59044d1ad741aa7f842f01b956c51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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