File: fasl-version.lisp

package info (click to toggle)
clisp 1%3A2.49.20250504.gitf662209-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 57,736 kB
  • sloc: lisp: 124,909; ansic: 83,890; xml: 27,431; sh: 11,077; fortran: 7,307; makefile: 1,455; perl: 164; sed: 13
file content (18 lines) | stat: -rw-r--r-- 576 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;;;; Find out the FASL version of this Clisp release and dump it to the
;;;; debian/clisp.substvars variable, so it can be used in
;;;; debian/control
;;;;
;;;; Packages that want to provide binary Clisp FASLs can then depend
;;;; on clisp-fasl-loader-XX
;;;;
;;;;  -- René van Bevern <rvb@pro-linux.de>, Sat Sep  3 19:23:20 2005

(with-open-file (substvars "debian/clisp.substvars"
			   :direction :output
			   :if-exists :append
			   :if-does-not-exist :create)
  (format substvars "~&clisp:fasl-version=clisp-fasl-loader-~A~%"
	  (car (system::version))))

(ext:quit)