summaryrefslogtreecommitdiff
path: root/man/7
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2008-10-08 16:23:27 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2008-10-08 16:23:27 +0200
commit1ad28d357f1f6ac651d1ac9377be82a4ef5d02e6 (patch)
treed686231a7c0f1e5da628d97704d6d6ca6ffbacfd /man/7
parent85f1a10fe686f195b0ca1765cd05644002660d03 (diff)
pkg(7): Added background and overall informations. Still far from complete
Diffstat (limited to 'man/7')
-rw-r--r--man/7/pkg46
1 files changed, 46 insertions, 0 deletions
diff --git a/man/7/pkg b/man/7/pkg
index 213df86..6cb3a05 100644
--- a/man/7/pkg
+++ b/man/7/pkg
@@ -4,6 +4,52 @@
pkg - Package maintenance utility, package format
+=head1 INTRO
+
+(if you prefer technical infos over historical blah-blah, skip this section)
+
+Actually, pkg is just a pimped dotfile manager, which just happens to support
+a sort of packages, version control, automatic sym- and hardlinking, and which
+can also handle scripts and binaries. Oh, and it can cause serious brain damage.
+
+It evolved from two hg repos for ~/bin and ~/etc and some management scripts,
+and now it can handle as many git repos as you want, which may contain
+basically anything you can think of - you can even store movies in them.
+(Of course that would be completely braindead, but hey -
+you could, if you wanted to)
+
+Currently, pkg should be considered early-beta software. It already works quite
+well and does not have many known bugs, however some concepts are really stupid
+and are subject to change. Be warned that backwards compatibility can NOT be
+guaranteed, though I will do my best.
+
+=head1 THE BASICS
+
+B<pkg> requires two directories in you home directory. B<~/bin> contains
+symlinks to the executables shipped with your packages, and $PDIR
+(B<~/packages> by default, but *theoretically* configurable) contains the
+packages themselves. B<~/bin> may also contain normal executables, just make
+sure they don't conflict with a package's ones.
+
+=head1 THE PACKAGES DIRECTORY
+
+$PDIR is the core of all this stuff. It's main use is storing the packages.
+There is one directory for each installed package, as created by B<git clone>.
+Additionally, $PDIR holds two speciel files: B<.list> and B<.list-remote>. For
+an explanation about these files, refer to the section 'the package list' below.
+
+=head2 NOTE
+
+All directories in $PDIR must be valid git repositories which are not in the
+state of 'initial commit'. Dotfiles (directories starting with a .) are exempt
+from this, they will be ignored by pkg.
+
+=head1 WHAT IS A PACKAGE?
+
+Anything tracked with git can be used as package. However, as the purpose of pkg
+is not to do your version control, you probably want to have at least one of the
+files and directories described below in it.
+
=head1 PACKAGE STRUCTURE
Special (as in, mostly handled by pkg) directories and files in a package.