Changeset 4ba4e7c for general


Ignore:
Timestamp:
10/28/2004 11:58:12 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 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
Children:
3bc173f
Parents:
75ebe0ef
Message:

Added additional parameters to configure and added dependencies to Ruby instructions

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/ruby.xml

    r75ebe0ef r4ba4e7c  
    88<!ENTITY ruby-download-ftp " ">
    99<!ENTITY ruby-size "2.6 MB">
    10 <!ENTITY ruby-buildsize "31 MB">
    11 <!ENTITY ruby-time "0.71 SBU">
    12 
     10<!ENTITY ruby-buildsize "36.2 MB">
     11<!ENTITY ruby-time "0.62 SBU">
    1312]>
    1413
     
    2322<sect2>
    2423<title>Introduction to <application>Ruby</application></title>
    25                                                                                
     24
    2625<para>The <application>Ruby</application> package contains the
    2726<application>Ruby</application> development environment. This
    2827is useful for object-oriented scripting.</para>
    29                                                                                
     28
    3029<sect3><title>Package information</title>
    3130<itemizedlist spacing='compact'>
     
    3332<listitem><para>Download (FTP): <ulink url="&ruby-download-ftp;"/></para></listitem>
    3433<listitem><para>Download size: &ruby-size;</para></listitem>
    35 <listitem><para>Estimated Disk space required: &ruby-buildsize;</para></listitem>
     34<listitem><para>Estimated disk space required: &ruby-buildsize;</para></listitem>
    3635<listitem><para>Estimated build time: &ruby-time;</para></listitem></itemizedlist>
    3736</sect3>
    38                                                                                
     37
     38<sect3><title><application>Ruby</application> dependencies</title>
     39<sect4><title>Optional</title>
     40<para><xref linkend="openssl"/>,
     41<xref linkend="tk"/>,
     42<xref linkend="db"/>,
     43<xref linkend="gdbm"/></para>
     44</sect4>
     45</sect3>
     46
    3947</sect2>
    4048
    4149<sect2>
    4250<title>Installation of <application>Ruby</application></title>
    43                                                                                
    44 <para>Install <application>Ruby</application> by running the following commands:</para>
    45                                                                                
    46 <screen><userinput><command>./configure --prefix=/usr &amp;&amp;
     51
     52<para>Install <application>Ruby</application> by running the following
     53commands:</para>
     54
     55<screen><userinput><command>./configure --prefix=/usr \
     56    --enable-shared --enable-pthread &amp;&amp;
    4757make &amp;&amp;
    4858make install</command></userinput></screen>
    49                                                                                
     59
     60</sect2>
     61
     62<sect2>
     63<title>Command explanations</title>
     64
     65<para><parameter>--enable-shared</parameter>: This parameter builds the
     66<filename class='libraryfile'>libruby</filename> shared library.</para>
     67
     68<para><parameter>--enable-pthread</parameter>: This parameter links the
     69threading library into the <application>Ruby</application> build.</para>
     70
    5071</sect2>
    5172
    5273<sect2>
    5374<title>Contents</title>
    54                                                                                
     75
    5576<para>The <application>Ruby</application> package contains
    5677<command>ruby</command>,
     
    5879<command>erb</command>,
    5980<command>rdoc</command>,
    60 <command>ri</command> and
    61 <command>testrb</command>.</para>
    62                                                                                
     81<command>ri</command>,
     82<command>testrb</command>,
     83<filename class='libraryfile'>libruby</filename> libraries and
     84numerous scripts and modules.</para>
     85
    6386</sect2>
    64                                                                                
     87
    6588<sect2><title>Description</title>
    66                                                                                
     89
    6790<sect3><title>ruby</title>
    6891<para><command>ruby</command> is an interpreted scripting language for quick
    6992and easy object-oriented programming.</para></sect3>
    70                                                                                
     93
    7194<sect3><title>irb</title>
    7295<para><command>irb</command> is the interactive interface for ruby.</para>
    7396</sect3>
    74                                                                                
     97
    7598</sect2>
    7699
Note: See TracChangeset for help on using the changeset viewer.