|
From: <di...@us...> - 2007-02-12 04:30:38
|
Revision: 414
http://safekeep.svn.sourceforge.net/safekeep/?rev=414&view=rev
Author: dimi
Date: 2007-02-11 20:30:36 -0800 (Sun, 11 Feb 2007)
Log Message:
-----------
Add a way to install SafeKeep from source.
Modified Paths:
--------------
safekeep/trunk/Makefile
safekeep/trunk/README
safekeep/trunk/TODO
Modified: safekeep/trunk/Makefile
===================================================================
--- safekeep/trunk/Makefile 2007-02-12 00:40:46 UTC (rev 413)
+++ safekeep/trunk/Makefile 2007-02-12 04:30:36 UTC (rev 414)
@@ -21,6 +21,7 @@
@echo "Targets:"
@echo " help Displays this message"
@echo " info Displays package information (version, tag, etc.)"
+ @echo " install Installs safekeep and the online documentation"
@echo " docs Builds all documentation formats"
@echo " build Builds everything needed for an installation"
@echo " deb Builds snapshot binary and source DEBs"
@@ -74,6 +75,11 @@
changelog:
svn log -v --xml | svn2log.py -D 0 -u doc/users
+install: $(DOC_MAN)
+ install -m 755 safekeep "/usr/bin/"
+ install -m 755 doc/safekeep.1 "/usr/share/man/man1/"
+ install -m 755 doc/safekeep.conf.5 "/usr/share/man/man5/"
+
tar: tar-snapshot
tar-snapshot:
Modified: safekeep/trunk/README
===================================================================
--- safekeep/trunk/README 2007-02-12 00:40:46 UTC (rev 413)
+++ safekeep/trunk/README 2007-02-12 04:30:36 UTC (rev 414)
@@ -7,6 +7,27 @@
* python
* openssh
+Install
+~~~~~~~
+It is recommended that you install the packaged version of SafeKeep,
+via the provided RPMs or DEBs. However, if you can not use those
+packages, or want to install from source, you can do so by running
+as root the command:
+
+ $ make install
+
+NOTE: installing SafeKeep this way is not equivalent to a package
+install. You will have to manually take care of a number of other
+steps that are automatically taken care of by the packages such as
+creating /etc/safekeep.d, installing the cron job script, creating
+the safekeep user, and so on.
+
+Please make sure you understand all the ramifications of doing a
+source install before you chose this option. Feel free to ask
+questions on the mailing list:
+ saf...@li...
+if you run into any problems.
+
Full Test
~~~~~~~~~
To run the full test simply invoke the target:
Modified: safekeep/trunk/TODO
===================================================================
--- safekeep/trunk/TODO 2007-02-12 00:40:46 UTC (rev 413)
+++ safekeep/trunk/TODO 2007-02-12 04:30:36 UTC (rev 414)
@@ -1,5 +1,4 @@
Next release:
- * Support installation from the Makefile
* Add an ANNOUNCE file
* Add an INSTALL file
* Add reference to SF
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|