small fixes, install docs
This commit is contained in:
parent
51adb0896d
commit
041114ff9a
|
@ -1,4 +1,5 @@
|
|||
(define-package "yp" (0 2 0) ()
|
||||
(define-package "yp" (0 2 0)
|
||||
((install-lib-version (1 0)))
|
||||
|
||||
(display "configuring, compiling and installing c-stubs")
|
||||
(newline)
|
||||
|
@ -9,6 +10,7 @@
|
|||
(configure `("./configure"
|
||||
,(string-append "--prefix=" prefix)
|
||||
,(string-append "--with-scsh-includes=" scsh-includes)
|
||||
,(string-append "--enable-static=no")
|
||||
,(string-append "--build=" build-host)))
|
||||
(make `(make install
|
||||
,(string-append "DESTDIR=" (get-option-value 'dest-dir)))))
|
||||
|
@ -53,5 +55,10 @@
|
|||
(load ,(string-append schemedir "/yp-packages.scm"))
|
||||
(user))))
|
||||
|
||||
(display "installing")
|
||||
(newline)
|
||||
|
||||
(install-directory-contents "scheme" 'scheme)
|
||||
(install-file "doc/scsh-yp.txt" 'doc)
|
||||
(install-file '("COPYING" . "LICENSE") 'doc)
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue