1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00
nixpkgs/pkgs/development/interpreters/clisp/builder.sh
Martin Bravenboer a7f9ee22b5 Lisp isn't a language, it's a building material (Alan Kay).
svn path=/nixpkgs/trunk/; revision=1314
2004-08-23 10:44:21 +00:00

13 lines
197 B
Bash

. $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