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