Imported Upstream version 0.7.14
[platform/upstream/libsolv.git] / README
1 Libsolv
2 =======
3
4 This is libsolv, a free package dependency solver using a satisfiability
5 algorithm.
6
7 The code is based on two major, but independent, blocks:
8
9  1. Using a dictionary approach to store and retrieve package and
10     dependency information in a fast and space efficient manner.
11
12  2. Using satisfiability, a well known and researched topic, for
13     resolving package dependencies.
14
15 The sat-solver code has been written to aim for the newest packages,
16 record the decision tree to provide introspection, and also provides
17 the user with suggestions on how to deal with unsolvable
18 problems. It also takes advantage of repository storage to
19 minimize memory usage.
20
21 Supported package formats:
22
23   - rpm/rpm5
24   - deb
25   - arch linux
26   - haiku
27
28 Supported repository formats:
29
30   - rpmmd (primary, filelists, comps, deltainfo/presto, updateinfo)
31   - susetags, suse product formats
32   - mandriva/mageia (synthesis, info, files)
33   - arch linux
34   - red carpet helix format
35   - haiku
36
37 Build instructions
38 ==================
39
40 Requires: cmake 2.8.5 or later
41
42     mkdir build
43     cd build
44     cmake ..
45     make
46
47 ////
48 vim: syntax=asciidoc
49 ////