source: general/prog/nasm.xml@ 3ff3b9b

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 3ff3b9b was 92b0b42, checked in by Krejzi <krejzi@…>, 11 years ago

Package updates.

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

  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[52d29f7]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[52d29f7]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[62e5e8f]7 <!ENTITY NASM-download-http "http://www.nasm.us/pub/nasm/releasebuilds/&NASM-version;/nasm-&NASM-version;.tar.xz">
[df3fa26]8 <!ENTITY NASM-download-ftp " ">
[92b0b42]9 <!ENTITY NASM-md5sum "b13c433bbf3cfe055c5b830066aed4ba">
10 <!ENTITY NASM-size "668 KB">
11 <!ENTITY NASM-buildsize "26 MB" >
[e31502b]12 <!ENTITY NASM-time "0.1 SBU">
[52d29f7]13]>
14
[284d8e17]15<sect1 id="NASM" xreflabel="NASM-&NASM-version;">
[5eaa687]16 <?dbhtml filename="NASM.html" ?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>NASM-&NASM-version;</title>
24
25 <indexterm zone="NASM">
26 <primary sortas="a-NASM">NASM</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to NASM</title>
31
[7cd76d62]32 <para><application>NASM</application> (Netwide Assembler)
33 is an 80x86 assembler designed for portability and modularity. It includes a
[5eaa687]34 disassembler as well.</para>
35
[62e5e8f]36 &lfs72_checked;
[a9e90a5]37
[5eaa687]38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&NASM-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&NASM-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &NASM-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &NASM-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &NASM-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &NASM-time;</para>
57 </listitem>
58 </itemizedlist>
[e31502b]59
[60791bf]60 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
61 <itemizedlist spacing="compact">
[bccbdaea]62 <listitem>
[e31502b]63 <para>Optional documentation: <ulink
[62e5e8f]64 url="http://www.nasm.us/pub/nasm/releasebuilds/&NASM-version;/nasm-&NASM-version;-xdoc.tar.xz"/></para>
[60791bf]65 </listitem>
66 </itemizedlist>
[e31502b]67
[1039de3]68 <para condition="html" role="usernotes">User Notes:
69 <ulink url="&blfs-wiki;/nasm"/></para>
70
[5eaa687]71 </sect2>
72
73 <sect2 role="installation">
74 <title>Installation of NASM</title>
75
[e31502b]76 <para>If you downloaded the optional documentation, put it into the
77 source tree:</para>
78
[61b9fa2d]79<screen><userinput>tar -xf ../nasm-&NASM-version;-xdoc.tar.xz --strip-components=1</userinput></screen>
[e31502b]80
[7cd76d62]81 <para>Install <application>NASM</application> by running
[5eaa687]82 the following commands:</para>
83
[61db33a]84<screen><userinput>./configure --prefix=/usr &amp;&amp;
[e31502b]85make</userinput></screen>
86
[5eaa687]87 <para>This package does not come with a test suite.</para>
[87053af]88
[5eaa687]89 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
[bd23186f]90
[e31502b]91<screen role="root"><userinput>make install</userinput></screen>
92
93 <para>If you downloaded the optional documentation, install it with the
94 following instructions as the <systemitem
95 class="username">root</systemitem> user:</para>
96
97<screen role="root"><userinput>install -m755 -d /usr/share/doc/nasm-&NASM-version;/html &amp;&amp;
98cp -v doc/html/*.html /usr/share/doc/nasm-&NASM-version;/html &amp;&amp;
99cp -v doc/*.{txt,ps,pdf} /usr/share/doc/nasm-&NASM-version; &amp;&amp;
[92b0b42]100cp -v doc/info/* /usr/share/info &amp;&amp;
101install-info /usr/share/info/nasm.info /usr/share/info/dir</userinput></screen>
102
[5eaa687]103 </sect2>
104
105 <sect2 role="content">
106 <title>Contents</title>
107
108 <segmentedlist>
109 <segtitle>Installed Programs</segtitle>
[92b0b42]110 <segtitle>Installed Directory</segtitle>
[5eaa687]111
112 <seglistitem>
[62e5e8f]113 <seg>nasm and ndisasm</seg>
[df3fa26]114 <seg>/usr/share/doc/nasm-&NASM-version;</seg>
[5eaa687]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="nasm-prog">
124 <term><command>nasm</command></term>
125 <listitem>
126 <para>is a portable 80x86 assembler.</para>
127 <indexterm zone="NASM nasm-prog">
128 <primary sortas="b-nasm">nasm</primary>
129 </indexterm>
130 </listitem>
131 </varlistentry>
132
133 <varlistentry id="ndisasm">
134 <term><command>ndisasm</command></term>
135 <listitem>
136 <para>is an 80x86 binary file disassembler.</para>
137 <indexterm zone="NASM ndisasm">
138 <primary sortas="b-ndisasm">ndisasm</primary>
139 </indexterm>
140 </listitem>
141 </varlistentry>
142
143 </variablelist>
144
145 </sect2>
[284d8e17]146
147</sect1>
Note: See TracBrowser for help on using the repository browser.