source: general/prog/ruby.xml@ 03ab977

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
Last change on this file since 03ab977 was 03ab977, checked in by Larry Lawrence <larry@…>, 19 years ago

index markup, without stylesheet for longindex.html

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

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[52d29f7]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[e619d74]7<!ENTITY ruby-download-http " ">
8<!ENTITY ruby-download-ftp "ftp://ftp.ruby-lang.org/pub/ruby/ruby-&ruby-version;.tar.gz">
[35a9977]9<!ENTITY ruby-md5sum "8ffc79d96f336b80f2690a17601dea9b">
[e619d74]10<!ENTITY ruby-size "3.5 MB">
[4ba4e7c]11<!ENTITY ruby-buildsize "36.2 MB">
12<!ENTITY ruby-time "0.62 SBU">
[52d29f7]13]>
14
[35a9977]15<sect1 id="ruby-package" xreflabel="Ruby-&ruby-version;">
[a0f03b0]16<sect1info>
[5cd0959d]17<othername>$LastChangedBy$</othername>
18<date>$Date$</date>
[a0f03b0]19</sect1info>
[19aa75a]20<?dbhtml filename="ruby.html"?>
[13f51bbc]21<title>Ruby-&ruby-version;</title>
[03ab977]22<indexterm zone="ruby-package"><primary sortas="a-Ruby">Ruby</primary></indexterm>
[a1f7daa]23
[52d29f7]24<sect2>
25<title>Introduction to <application>Ruby</application></title>
[4ba4e7c]26
[52d29f7]27<para>The <application>Ruby</application> package contains the
28<application>Ruby</application> development environment. This
29is useful for object-oriented scripting.</para>
[4ba4e7c]30
[52d29f7]31<sect3><title>Package information</title>
32<itemizedlist spacing='compact'>
33<listitem><para>Download (HTTP): <ulink url="&ruby-download-http;"/></para></listitem>
34<listitem><para>Download (FTP): <ulink url="&ruby-download-ftp;"/></para></listitem>
[35a9977]35<listitem><para>MD5 Sum: &ruby-md5sum;</para></listitem>
[52d29f7]36<listitem><para>Download size: &ruby-size;</para></listitem>
[4ba4e7c]37<listitem><para>Estimated disk space required: &ruby-buildsize;</para></listitem>
[52d29f7]38<listitem><para>Estimated build time: &ruby-time;</para></listitem></itemizedlist>
39</sect3>
[4ba4e7c]40
41<sect3><title><application>Ruby</application> dependencies</title>
42<sect4><title>Optional</title>
43<para><xref linkend="openssl"/>,
44<xref linkend="tk"/>,
45<xref linkend="db"/>,
46<xref linkend="gdbm"/></para>
47</sect4>
48</sect3>
49
[52d29f7]50</sect2>
51
52<sect2>
53<title>Installation of <application>Ruby</application></title>
[4ba4e7c]54
55<para>Install <application>Ruby</application> by running the following
56commands:</para>
57
58<screen><userinput><command>./configure --prefix=/usr \
59 --enable-shared --enable-pthread &amp;&amp;
[52d29f7]60make &amp;&amp;
61make install</command></userinput></screen>
[4ba4e7c]62
63</sect2>
64
65<sect2>
66<title>Command explanations</title>
67
68<para><parameter>--enable-shared</parameter>: This parameter builds the
69<filename class='libraryfile'>libruby</filename> shared library.</para>
70
71<para><parameter>--enable-pthread</parameter>: This parameter links the
72threading library into the <application>Ruby</application> build.</para>
73
[52d29f7]74</sect2>
75
76<sect2>
77<title>Contents</title>
[35a9977]78<segmentedlist>
79<segtitle>Installed Programs</segtitle>
80<segtitle>Installed Library</segtitle>
81<segtitle>Installed Directory</segtitle>
82<seglistitem>
83<seg>ruby, irb, erb, rdoc, ri, and testrb.</seg>
84<seg>librudy.so</seg>
85<seg>/usr/lib/ruby</seg></seglistitem>
86</segmentedlist>
87
88<variablelist>
89<bridgehead renderas="sect3">Short Descriptions</bridgehead>
90<?dbfo list-presentation="list"?>
91
92<varlistentry id="ruby">
93<term><command>rudy</command></term>
94<listitem><para>is an interpreted scripting language for quick
[03ab977]95and easy object-oriented programming.</para>
96<indexterm zone="ruby-package ruby"><primary sortas="b-ruby">ruby</primary></indexterm>
97</listitem>
[35a9977]98</varlistentry>
99
100<varlistentry id="irb">
101<term><command>irb</command></term>
[03ab977]102<listitem><para>is the interactive interface for ruby.</para>
103<indexterm zone="ruby-package irb"><primary sortas="b-irb">irb</primary></indexterm>
104</listitem>
[35a9977]105</varlistentry>
106</variablelist>
[4ba4e7c]107
[52d29f7]108</sect2>
[a1f7daa]109
110</sect1>
111
Note: See TracBrowser for help on using the repository browser.