aboutsummaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorOmer Zak <w1@zak.co.il>2016-05-22 11:03:43 +0300
committerOmer Zak <w1@zak.co.il>2016-05-22 11:03:43 +0300
commitc26aec892f26ee21067a0beb9dd79a8c834e6dba (patch)
treee06cc2a5e207b089fa324faaf9114267edaa0e3a /INSTALL
parent7abc0d1d0b05198e10f5207aa17f1c14e37c0fa7 (diff)
downloadpyguile-c26aec892f26ee21067a0beb9dd79a8c834e6dba.tar
pyguile-c26aec892f26ee21067a0beb9dd79a8c834e6dba.tar.gz
Added all old files of interest to version control.
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL33
1 files changed, 33 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..c8c0613
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,33 @@
+Installation Instructions
+*************************
+
+Copyright (C) 2008 Omer Zak.
+
+This file is free documentation; Omer Zak gives unlimited permission to
+copy, distribute and modify it.
+
+Dependencies
+============
+Before installing the package, ensure that you have the following
+dependencies installed:
+1. Python 2.4.x (if you use a different version of Python, edit the
+ values assigned to PYINC and PYLIB in the Makefile).
+2. The CPAN module TAP::Harness (only if you intend to run tests).
+ If necessary, edit the value assigned to TEST_LIBDIRS to point
+ at the lib directory where this package is installed.
+3. Guile 1.6.x (if you use a different version of Guile and encounter
+ problems, let me know about this).
+
+Basic Installation
+==================
+1. Gunzip and untar the archive file into a directory.
+ You will see a subdirectory having name of the form pyguile-x.y.z.
+2. `cd' into this subdirectory.
+3. Type `make' to build the library file `libpyguile.so'.
+4. Optionally, type `make check' to run the package's self tests.
+5. Currently, there is no `make install'.
+ You'll have to manually copy the library file `libpyguile.so' and
+ the module definition file `pyguile.scm' to a location where they
+ will be found by Guile.
+ You can obtain the locations searched by Guile by invoking the
+ command `(display %load-path)(newline)'.