source: pkgmngt/packageManager.xml.template@ b86dfaf

ablfs-more legacy trunk
Last change on this file since b86dfaf was bd00951, checked in by Pierre Labastie <pierre@…>, 9 years ago

Add pacman as package manager.

  • Property mode set to 100644
File size: 5.6 KB
Line 
1<!-- $Id$ -->
2<!-- Mandatory header for xml files change encoding to the one
3you use on your computer -->
4<?xml version="1.0" encoding="UTF-8"?>
5<!-- Mandatory DOCTYPE declaration. Fill free to add entities,
6but no external entities in local files, since they would not
7be accessible from JHALFSDIR. Change the document type `article' to
8book if you prefer. That slightly changes the aspect if you render
9it in html -->
10<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
11 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" >
12
13<!-- The first markup should be the one defined in the DOCTYPE DECLARATION -->
14<article>
15
16<!-- First section for the tarball download address.
17Only the next four lines are mandatory, but you can add anything
18to make the text look more like the LFS book.
19Do not change anything, except the url and the md5 checksum. -->
20<sect1 id="package">
21 <para>Download: <ulink url="http://your/package-manager/url"/></para>
22 <para>MD5 sum: <literal>package-md5-checksum</literal></para>
23</sect1>
24
25<!-- If needed, uncomment and edit this:
26<sect1 id="patches">
27 <para>Download: <ulink url="somepatch-url"/></para>
28 <para>MD5 sum: <literal>somepatch-md5</literal></para>
29</sect1>
30-->
31
32<!-- Do not change the next line. The name of the scriptlet will be taken
33from the dbhtml instruction: it is the name of the file less .html, with
34xxx-x-added before (x, digits). Furthermore, the tarball name must be in the form
35name_x.y.z(.extension) or name-x.y.z(.extension) if the dbhtml
36instruction contains file="name.html" -->
37<sect1 id="ch-tools-pkgmngt" role="wrap">
38 <?dbhtml filename="dpkg.html"?>
39<!-- next line mandatory without change, but feel free to add any title,
40other sect2 (with different role), sectinfo and so on -->
41 <sect2 role="installation">
42<!-- You can use any number of remap="pre", "configure", "make", "test", "install"
43<screen><userinput remap="something">Instructions</userinput></screen>.
44They are executed in that order. "pre" can be used for patching for example.
45In case testing is enabled, the instructions flagged test are logged to a different
46file (test-log). If testing is not enabled, they are not executed at all. Do not
47put line breaks before and after your instructions. <userinput> without
48remap attribute are considered configuration instructions and executed last. You
49can also use remap="adjust" for the same purpose. -->
50<screen><userinput remap="configure">./configure --prefix=/tools \
51 --disable-nls --without-dselect \
52 --without-start-stop-daemon \
53 --without-update-alternatives \
54 --without-install-info \
55 --without-zlib --with-bz2=static --without-selinux</userinput></screen>
56
57<screen><userinput remap="make">(cd lib &amp;&amp; make)
58(cd src &amp;&amp; make)
59(cd dpkg-deb &amp;&amp; make)
60(cd dpkg-split &amp;&amp; make)</userinput></screen>
61
62<screen><userinput remap="install">cp src/dpkg src/dpkg-* /tools/bin
63cp dpkg-deb/dpkg-deb /tools/bin
64cp dpkg-split/dpkg-split /tools/bin
65mkdir -pv /tools/etc/dpkg/{,dpkg.cfg.d}
66cp debian/dpkg.cfg /tools/etc/dpkg</userinput></screen>
67
68<screen><userinput>cat &gt;&gt; /tools/etc/dpkg/dpkg.cfg &lt;&lt; EOF
69# admindir on LFS system
70admindir /var/lib/dpkg
71EOF</userinput></screen>
72
73<screen><userinput>cat &gt;&gt; /tools/etc/dpkg/dpkg.cfg &lt;&lt; EOF
74# disable fatal error on path checking
75force-bad-path
76EOF</userinput></screen>
77
78 </sect2>
79
80</sect1>
81
82<!-- Mandatory section for creating dirs. These instructions are added at the
83end of the creating dirs instructions of the book. Do not change the
84following line -->
85<sect1 id="ch-pkgmngt-creatingdirs">
86
87<!-- Put the create dir intructions there. feel free to add
88any explaining <title>Title</title> and <para>explanations</para> -->
89<screen><userinput>mkdir -pv /var/{log,lib/dpkg/{info,updates}}
90mkdir -pv /var/lib/packages</userinput></screen>
91
92</sect1>
93<!-- Same for files. Do not change the following line -->
94<sect1 id="ch-pkgmngt-createfiles">
95
96<screen><userinput>touch /var/lib/dpkg/{available,status}
97touch /var/log/dpkg.log</userinput></screen>
98
99</sect1>
100
101<!-- Last but not least : Final instructions for installing the
102package manager at the end of chapter 6. Again, the scriptlet file name is
103taken from the dbhtml instruction, with digits added before and .html cut
104and the tarball name is formed from this name + version. So the file
105here _must_ be the same as in chapter 5. If rendering in html, both
106sets of instructions end up in the same file, which is usually not a problem.
107-->
108<sect1 id="ch-system-pkgmngt" role="wrap">
109 <?dbhtml filename="dpkg.html"?>
110
111 <sect2 role="installation">
112
113<screen><userinput remap="configure">./configure --prefix=/usr \
114 --without-dselect \
115 --without-start-stop-daemon \
116 --without-update-alternatives \
117 --without-install-info \
118 --without-selinux</userinput></screen>
119
120<screen><userinput remap="make">make</userinput></screen>
121
122<!-- Those instructions are executed with PKG_DEST set. They are not processed
123in any way to add $PKG_DEST at some place, and the PKG_DEST directory is not
124populated before, so it is basically empty. You have thus to create any directory
125needed in $PKG_DEST and not otherwise created by the make install command. -->
126<screen><userinput remap="install">mkdir -pv $PKG_DEST
127make DESTDIR=$PKG_DEST install
128mkdir -pv $PKG_DEST/etc/dpkg/{,dpkg.cfg.d}
129cp debian/dpkg.cfg $PKG_DEST/etc/dpkg</userinput></screen>
130
131<screen><userinput remap="install">cat &gt;&gt; $PKG_DEST/etc/dpkg/dpkg.cfg &lt;&lt; EOF
132# admindir on LFS system
133admindir /var/lib/dpkg
134EOF</userinput></screen>
135
136<screen><userinput>cat &gt;&gt; $PKG_DEST/etc/dpkg/dpkg.cfg &lt;&lt; EOF
137# disable fatal error on path checking
138force-bad-path
139EOF</userinput></screen>
140
141 </sect2>
142
143</sect1>
144</article>
Note: See TracBrowser for help on using the repository browser.