aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunk@stsci.edu>2013-07-11 10:08:22 -0400
committerJoseph Hunkeler <jhunk@stsci.edu>2013-07-11 10:08:22 -0400
commitd8384b2a19ea7e05606f67e4c77f8b706aed4331 (patch)
tree3a407deee018ebbe4d9adb9479d0859109a0e366
parent874ff835627cd1dd14e75ce7b56e12edcde48e98 (diff)
downloadipsutils-d8384b2a19ea7e05606f67e4c77f8b706aed4331.tar.gz
Initial commit
-rw-r--r--docs/source/installation.rst72
1 files changed, 72 insertions, 0 deletions
diff --git a/docs/source/installation.rst b/docs/source/installation.rst
new file mode 100644
index 0000000..9de19d4
--- /dev/null
+++ b/docs/source/installation.rst
@@ -0,0 +1,72 @@
+Installation
+************
+
+Requirements
+============
+
+* Solaris >= 11.0
+* Python == 2.7
+
+
+Getting ipsutils
+================
+
+Clone ipsutils git repository
+-----------------------------
+
+::
+
+ git clone http://bitbucket.org/jhunkeler/ipsutils.git
+ cd ipsutils
+
+
+Generate ipsutils build environment
+-----------------------------------
+
+::
+
+ PYTHONPATH=. ./ipsbuild-setuptree.py
+
+
+Create source distribution
+--------------------------
+
+::
+
+ python2.7 setup.py build sdist
+
+
+Copy resulting tarball to ipsutils build SOURCES directory
+----------------------------------------------------------
+
+::
+
+ cp dist/ipsutils-VERSION.tar.gz ~/ipsutils/SOURCES
+
+
+Build ipsutils
+==============
+
+::
+
+ PYTHONPATH=. ./ipsbuild.py ipsbuild.ips
+
+
+Publish ipsutils to your local repository
+-----------------------------------------
+
+::
+
+ pkgsend publish \
+ -s /your/repo \
+ -d ~/ipsutils/PKGS/ipsutils-VERSION/root \
+ ~/ipsutils/PKGS/ipsutils-VERSION/ipsutils-VERSION.res
+
+
+Install ipsutils from your local repository
+-------------------------------------------
+
+::
+
+ pkg install ipsutils
+