Browse Source

Clifford Wolf:


			
			
				rocklinux
			
			
		
Clifford Wolf 16 years ago
parent
commit
02b3433b02
2 changed files with 60 additions and 0 deletions
  1. +17
    -0
      package/public/clisp/clisp.conf
  2. +43
    -0
      package/public/clisp/clisp.desc

+ 17
- 0
package/public/clisp/clisp.conf

@ -0,0 +1,17 @@
clisp_custmain() {
local my_confopt=$(
for x in $(eval echo "$confopt"); do
( [[ ".$x" == .--build=* ]] || [[ ".$x" == .--host=* ]]; ) && continue
grep -q -- ${x%=*}= configure && echo "$x";
done | tr '\n' ' '
)
eval "./configure $my_confopt --ignore-absence-of-libsigsegv"
cd src
make
make check
make install
}
custmain="clisp_custmain"

+ 43
- 0
package/public/clisp/clisp.desc

@ -0,0 +1,43 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/clisp/clisp.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] GNU CLISP - an ANSI Common Lisp
[T] CLISP is a portable ANSI Common Lisp implementation and development
[T] environment by Bruno Haible. Interpreter, compiler, debugger, CLOS,
[T] MOP, FFI, Unicode, sockets, CLX.
[U] http://www.gnu.org/software/clisp/
[A] Bruno Haible <bruno-antispam@antispam.haible.de>
[M] Clifford Wolf <clifford@clifford.at>
[C] extra/development
[L] LGPL
[S] Stable
[V] 2.48
[P] X --?--5---9 270.203
[D] 3606501304 clisp-2.48.tar.bz2 http://ftp.gnu.org/pub/gnu/clisp/release/latest/

Loading…
Cancel
Save