source: general/prog/scons.xml@ cb594b6c

12.0 12.1 kea ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since cb594b6c was cb594b6c, checked in by Xi Ruoyao <xry111@…>, 11 months ago

general: Remove non-exist User Notes link

Part of User Notes removal by
https://www.linuxfromscratch.org/~xry111/remove-nonexist-usernote.sh

  • Property mode set to 100644
File size: 5.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY scons-download-http "&sourceforge-dl;/scons/SCons-&scons-version;.tar.gz">
8 <!ENTITY scons-download-ftp " ">
9 <!ENTITY scons-md5sum "4b868f068d568b42b975d7cb357c65d6">
10 <!ENTITY scons-size "3.0 MB">
11 <!ENTITY scons-buildsize "52 MB">
12 <!ENTITY scons-time "less than 0.1 SBU">
13]>
14
15<sect1 id="scons" xreflabel="SCons-&scons-version;">
16 <?dbhtml filename="scons.html"?>
17
18
19 <title>SCons-&scons-version;</title>
20
21 <indexterm zone="scons">
22 <primary sortas="a-SCons">SCons</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to SCons</title>
27
28 <para>
29 <application>SCons</application> is a tool for building software
30 (and other files) implemented in <application>Python</application>.
31 </para>
32
33 &lfs113_checked;
34
35 <bridgehead renderas="sect3">Package Information</bridgehead>
36 <itemizedlist spacing="compact">
37 <listitem>
38 <para>
39 Download (HTTP): <ulink url="&scons-download-http;"/>
40 </para>
41 </listitem>
42 <listitem>
43 <para>
44 Download (FTP): <ulink url="&scons-download-ftp;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download MD5 sum: &scons-md5sum;
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download size: &scons-size;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Estimated disk space required: &scons-buildsize;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated build time: &scons-time;
65 </para>
66 </listitem>
67 </itemizedlist>
68
69 <bridgehead renderas="sect3">SCons Dependencies</bridgehead>
70
71 <bridgehead renderas="sect4">Optional</bridgehead>
72 <para role="optional">
73 <xref linkend="docbook-xsl"/> and
74 <xref role="runtime" linkend="libxslt"/>
75 </para>
76
77 </sect2>
78
79 <sect2 role="installation">
80 <title>Installation of SCons</title>
81
82 <para>
83 Install <application>SCons</application> by running the following
84 commands as the <systemitem class="username">root</systemitem> user:
85 </para>
86
87<screen role="root"><userinput>sed -i 's/env python/&amp;3/' SCons/Utilities/*.py &amp;&amp;
88
89python3 setup.py install --prefix=/usr \
90 --optimize=1 &amp;&amp;
91
92mv -v /usr/lib/python&python3-majorver;/site-packages/SCons-&scons-version;-py&python3-majorver;.egg/*.1 \
93 /usr/share/man/man1</userinput></screen>
94
95 </sect2>
96
97 <sect2 role="content">
98 <title>Contents</title>
99
100 <segmentedlist>
101 <segtitle>Installed Programs</segtitle>
102 <segtitle>Installed Libraries</segtitle>
103 <segtitle>Installed Directory</segtitle>
104
105 <seglistitem>
106 <seg>
107 scons, scons-configure-cache, and sconsign
108 </seg>
109 <seg>
110 None
111 </seg>
112 <seg>
113 /usr/lib/python&python3-majorver;/site-packages/SCons
114 </seg>
115 </seglistitem>
116 </segmentedlist>
117
118 <variablelist>
119 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
120 <?dbfo list-presentation="list"?>
121 <?dbhtml list-presentation="table"?>
122
123 <varlistentry id="scons-prog">
124 <term><command>scons</command></term>
125 <listitem>
126 <para>
127 is a software construction tool
128 </para>
129 <indexterm zone="scons scons-prog">
130 <primary sortas="b-scons">scons</primary>
131 </indexterm>
132 </listitem>
133 </varlistentry>
134
135 <varlistentry id="scons-configure-cache">
136 <term><command>scons-configure-cache</command></term>
137 <listitem>
138 <para>
139 shows or converts the configuration of an
140 <application>SCons</application> cache directory
141 </para>
142 <indexterm zone="scons scons-configure-cache">
143 <primary sortas="b-scons-configure-cache">scons-configure-cache</primary>
144 </indexterm>
145 </listitem>
146 </varlistentry>
147
148 <varlistentry id="sconsign">
149 <term><command>sconsign</command></term>
150 <listitem>
151 <para>
152 prints <application>SCons</application>
153 <filename>.sconsign</filename> file information
154 </para>
155 <indexterm zone="scons sconsign">
156 <primary sortas="b-sconsign">sconsign</primary>
157 </indexterm>
158 </listitem>
159 </varlistentry>
160
161 <!-- Removed in 4.0.0
162 <varlistentry id="scons-time">
163 <term><command>scons-time</command></term>
164 <listitem>
165 <para>
166 generates and displays <application>SCons</application>
167 timing information.
168 </para>
169 <indexterm zone="scons scons-time">
170 <primary sortas="b-scons-time">scons-time</primary>
171 </indexterm>
172 </listitem>
173 </varlistentry>
174-->
175 </variablelist>
176
177 </sect2>
178
179</sect1>
Note: See TracBrowser for help on using the repository browser.