spk view doc/spk.en.html @ rev 144

Mini up in doc
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 06 22:33:53 2014 +0200 (2014-04-06)
parents 1ab690b993b4
children fd2034f96fe0
line source
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
3 <head>
4 <meta charset="utf-8" />
5 <title>Spk Documentation</title>
6 <link rel="stylesheet" type="text/css" href="../slitaz-doc.css" />
7 <script type="text/javascript" src="../slitaz-doc.js"></script>
8 </head>
9 <body>
11 <header>
12 <h1>Spk Documentation</h1>
13 </header>
15 <!-- Start content -->
16 <div id="content">
18 <h2>SliTaz Packages Toolset</h2>
20 <p>
21 Small alternative to TazPKG. Spk consists of small separate programs
22 for easier code maintainance and uses a shared library. Spk can handle
23 multiple packages on a cmdline as well as the ability to manage your
24 own mirror.
25 </p>
27 <h3>Usage and help</h3>
28 <p>
29 All spk tools provide a small built-in help usage that you can display
30 with the command 'usage' or 'help'. It also has some options to
31 perform special tasks on a package before executing a task or
32 afterwards. To get help and usage:
33 </p>
34 <pre>
35 # spk usage
36 # spk-add help
37 </pre>
39 <h3>Packages info</h3>
40 <p>
41 To get the packages status and information:
42 </p>
43 <pre>
44 # spk busybox glib
45 </pre>
47 <h3>Add packages</h3>
48 <p>
49 Spk will handle dependencies. To install new packages simply use
50 'spk-add' or the --add option:
51 </p>
52 <pre>
53 # spk-add package1 package2
54 # spk package --add
55 </pre>
57 <h3>Remove packages</h3>
58 <p>
59 To remove packages simply:
60 </p>
61 <pre>
62 # spk-rm package1 package2 ...
63 </pre>
65 <h3>Packages update</h3>
66 <p>
67 To get the last list of packages and to update your system you have
68 to use 'spk-up'. Before installing anything Spk will ask for confirmation.
69 Spk lets you upgrade the full system at once (skipping blocked packages)
70 or you can also upgrade packages individually:
71 </p>
72 <pre>
73 # spk-up
74 # spk-up package1 package2 ...
75 </pre>
77 <h3>Find packages</h3>
78 <p>
79 The spk-find util finds a package from a full packages list available on the
80 mirror:
81 </p>
82 <pre>
83 # spk-find package
84 </pre>
86 <h3>List packages &amp; files</h3>
87 <p>
88 Spk-ls lets you get the list of installed or mirrored packages as well
89 as the list of files installed by a package:
90 </p>
91 <pre>
92 # spk-ls --short
93 # spk-ls gcc-lib-base
94 </pre>
96 <!-- <h3></h3>
97 <p>
99 </p>
100 <pre>
101 #
102 </pre> -->
105 <!-- End content -->
106 </div>
108 <footer>
109 Copyright © 2014 <a href="http://www.slitaz.org/">SliTaz GNU/Linux</a>
110 </footer>
112 </body>
113 </html>