small fixes, install docs

This commit is contained in:
eknauel 2004-03-29 11:45:45 +00:00
parent 51adb0896d
commit 041114ff9a
1 changed files with 8 additions and 1 deletions

View File

@ -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)
)