Setup with chicken-install instead of makefile.
parent
ebaf6763e3
commit
27563113d9
@ -0,0 +1,6 @@
|
||||
;;; hiss.meta -*- scheme -*-
|
||||
|
||||
((egg "hiss.egg")
|
||||
(synopsis "hiss is a chicken scheme shell.")
|
||||
(license "BSD")
|
||||
(depends readline))
|
@ -1,5 +1,5 @@
|
||||
;;; documentation at http://thintz.com/chicken-scheme-shell
|
||||
(use readline symbol-utils srfi-1)
|
||||
(use readline srfi-1)
|
||||
(include "macros.scm")
|
||||
|
||||
(define (getenv2 e)
|
@ -0,0 +1,7 @@
|
||||
;;; hiss.setup -*- scheme -*-
|
||||
|
||||
(compile -S -O3 -d1 hiss.scm -o hiss)
|
||||
|
||||
(install-program 'hiss
|
||||
'("hiss")
|
||||
`((version "2")))
|
Loading…
Reference in New Issue