summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2015-06-11 22:32:06 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2015-06-11 22:32:06 +0000
commit467298a34215401cdcbb1dded51bc2aba5f1f41c (patch)
tree1923f32fbc9cf8f0b4ab291d1eb9fad5ab872d68 /INSTALL
downloadModule-Build-tarball-467298a34215401cdcbb1dded51bc2aba5f1f41c.tar.gz
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL24
1 files changed, 24 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..aef676c
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,24 @@
+ Installation instructions for Module::Build
+
+To install this module, just do:
+
+ perl Build.PL
+ ./Build
+ ./Build test
+ ./Build install (this step may need to be done as the superuser)
+
+Or, if you're on a platform (like DOS or Windows) that doesn't require
+the "./" notation, you can do this:
+
+ perl Build.PL
+ Build
+ Build test
+ Build install
+
+The important thing is that the "Build" script gets executed and that
+you pass it the "test", "install", etc. arguments.
+
+There's heaps more information in the README and in the documentation
+of the various packages in this distribution.
+
+ -Ken