Ignore:
Timestamp:
03/12/2020 09:24:44 AM (4 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
6ea9f5b3
Parents:
5ab87cfa
Message:

Format general/prog

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@22835 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/nasm.xml

    r5ab87cfa rde33b2a  
    3030    <title>Introduction to NASM</title>
    3131
    32     <para><application>NASM</application> (Netwide Assembler)
    33     is an 80x86 assembler designed for portability and modularity. It includes a
    34     disassembler as well.</para>
     32    <para>
     33      <application>NASM</application> (Netwide Assembler) is an 80x86
     34      assembler designed for portability and modularity. It includes a
     35      disassembler as well.
     36    </para>
    3537
    3638    &lfs91_checked;
     
    3941    <itemizedlist spacing="compact">
    4042      <listitem>
    41         <para>Download (HTTP): <ulink url="&nasm-download-http;"/></para>
     43        <para>
     44          Download (HTTP): <ulink url="&nasm-download-http;"/>
     45        </para>
    4246      </listitem>
    4347      <listitem>
    44         <para>Download (FTP): <ulink url="&nasm-download-ftp;"/></para>
     48        <para>
     49          Download (FTP): <ulink url="&nasm-download-ftp;"/>
     50        </para>
    4551      </listitem>
    4652      <listitem>
    47         <para>Download MD5 sum: &nasm-md5sum;</para>
     53        <para>
     54          Download MD5 sum: &nasm-md5sum;
     55        </para>
    4856      </listitem>
    4957      <listitem>
    50         <para>Download size: &nasm-size;</para>
     58        <para>
     59          Download size: &nasm-size;
     60        </para>
    5161      </listitem>
    5262      <listitem>
    53         <para>Estimated disk space required: &nasm-buildsize;</para>
     63        <para>
     64          Estimated disk space required: &nasm-buildsize;
     65        </para>
    5466      </listitem>
    5567      <listitem>
    56         <para>Estimated build time: &nasm-time;</para>
     68        <para>
     69          Estimated build time: &nasm-time;
     70        </para>
    5771      </listitem>
    5872    </itemizedlist>
     
    6175    <itemizedlist spacing="compact">
    6276      <listitem>
    63         <para>Optional documentation: <ulink
    64         url="http://www.nasm.us/pub/nasm/releasebuilds/&nasm-version;/nasm-&nasm-version;-xdoc.tar.xz"/></para>
     77        <para>
     78          Optional documentation: <ulink
     79          url="http://www.nasm.us/pub/nasm/releasebuilds/&nasm-version;/nasm-&nasm-version;-xdoc.tar.xz"/>
     80        </para>
    6581      </listitem>
    6682    </itemizedlist>
     
    8298    <title>Installation of NASM</title>
    8399
    84     <para>If you downloaded the optional documentation, put it into the
    85     source tree:</para>
     100    <para>
     101      If you downloaded the optional documentation, put it into the
     102      source tree:
     103    </para>
    86104
    87105<screen><userinput>tar -xf ../nasm-&nasm-version;-xdoc.tar.xz --strip-components=1</userinput></screen>
    88106
    89     <para>Install <application>NASM</application> by running
    90     the following commands:</para>
     107    <para>
     108      Install <application>NASM</application> by running
     109      the following commands:
     110    </para>
    91111
    92112<screen><userinput>./configure --prefix=/usr &amp;&amp;
    93113make</userinput></screen>
    94114
    95     <para>This package does not come with a test suite.</para>
     115    <para>
     116      This package does not come with a test suite.
     117    </para>
    96118
    97     <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     119    <para>
     120      Now, as the <systemitem class="username">root</systemitem> user:
     121    </para>
    98122
    99123<!-- dev note: make INSTALLROOT=<DESTDIR> install -->
     
    101125<screen role="root"><userinput>make install</userinput></screen>
    102126
    103     <para>If you downloaded the optional documentation, install it with the
    104     following instructions as the <systemitem
    105     class="username">root</systemitem> user:</para>
     127    <para>
     128      If you downloaded the optional documentation, install it with the
     129      following instructions as the <systemitem
     130      class="username">root</systemitem> user:
     131    </para>
    106132
    107133<screen role="root"><userinput>install -m755 -d         /usr/share/doc/nasm-&nasm-version;/html  &amp;&amp;
     
    134160        <term><command>nasm</command></term>
    135161        <listitem>
    136           <para>is a portable 80x86 assembler.</para>
     162          <para>
     163            is a portable 80x86 assembler.
     164          </para>
    137165          <indexterm zone="nasm nasm-prog">
    138166            <primary sortas="b-nasm">nasm</primary>
     
    144172        <term><command>ndisasm</command></term>
    145173        <listitem>
    146           <para>is an 80x86 binary file disassembler.</para>
     174          <para>
     175            is an 80x86 binary file disassembler.
     176          </para>
    147177          <indexterm zone="nasm ndisasm">
    148178            <primary sortas="b-ndisasm">ndisasm</primary>
Note: See TracChangeset for help on using the changeset viewer.