12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- program=clisp
- version=2.49
- release=1
- tarname=${program}-${version}.tar.bz2
- fetch=http://ftp.gnu.org/pub/gnu/clisp/release/${version}/$tarname
- description="
- A Common Lisp implementation.
- In computing, CLISP is an implementation of the programming language
- Common Lisp originally developed by Bruno Haible and Michael Stoll for
- the Atari ST.
- LISP includes an interpreter, a bytecode compiler, debugger, socket
- interface, high-level foreign language interface, strong
- internationalization support, and two object systems:
- Common Lisp Object System (CLOS) and metaobject protocol (MOP).
- It is written in C and Common Lisp. It is now part of the GNU Project
- and is free software, available under the terms of the GNU General
- Public License (GPL).
- "
- hompage=http://clisp.org
- license=GPLv2
- docs="ANNOUNCE COPYRIGHT GNU-GPL SUMMARY"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
-
- cd "$srcdir"
-
- chmod -R u+w,go-w,a+rX-s .
-
- patch -Np1 -i \
- "${worktree}/patches/clisp/clisp-2.49-readline7_fixes-1.patch"
-
- cp -f "${worktree}/archive/common/config.guess" src/build-aux/config.guess
- cp -f "${worktree}/archive/common/config.sub" src/build-aux/config.sub
-
- rm -rf build
- mkdir build
- cd build
- ../configure --srcdir=../ \
- --prefix=/usr \
- --docdir=$docsdir \
- --with-libsigsegv-prefix=/usr \
- --build="$(cc -dumpmachine)"
- make -j${jobs}
- make -j${jobs} DESTDIR="$destdir" install
-
-
-
-
-
-
- mkdir -p "${destdir}${docsdir}"
- cp -p $docs "${destdir}${docsdir}/"
- }
|