source: general/graphlib/sassc.xml@ 427b46a

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
Last change on this file since 427b46a was 3df8ea47, checked in by Bruce Dubbs <bdubbs@…>, 3 years ago

Tags for libraries

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

  • Property mode set to 100644
File size: 5.2 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 sassc-download-http
8 "https://github.com/sass/sassc/archive/&sassc-version;/sassc-&sassc-version;.tar.gz">
9 <!ENTITY sassc-download-ftp " ">
10 <!ENTITY sassc-md5sum "dd675920c7151e50e2d2ac14f0fb222a">
11 <!ENTITY sassc-size "28 KB">
12 <!ENTITY sassc-buildsize "4.4 MB">
13 <!ENTITY sassc-time "0.1 SBU">
14
15 <!ENTITY libsass-download-http
16 "https://github.com/sass/libsass/archive/&libsass-version;/libsass-&libsass-version;.tar.gz">
17 <!ENTITY libsass-download-ftp " ">
18 <!ENTITY libsass-md5sum "602f7ff300f41f9d456c60a67270e3e0">
19 <!ENTITY libsass-size "332 KB">
20 <!ENTITY libsass-buildsize "210 MB">
21 <!ENTITY libsass-time "0.5 SBU (Using parallelism=4)">
22]>
23
24<sect1 id="sassc" xreflabel="sassc-&sassc-version;">
25 <?dbhtml filename="sassc.html"?>
26
27 <sect1info>
28 <othername>$LastChangedBy$</othername>
29 <date>$Date$</date>
30 </sect1info>
31
32 <title>sassc-&sassc-version;</title>
33
34 <indexterm zone="sassc">
35 <primary sortas="a-sassc">sassc</primary>
36 </indexterm>
37
38 <sect2 role="package">
39 <title>Introduction to sassc</title>
40
41 <para>
42 SassC is a wrapper around libsass, a CSS pre-processor language.
43 </para>
44
45 &lfs101_checked;
46
47 <bridgehead renderas="sect3">Package Information</bridgehead>
48 <itemizedlist spacing="compact">
49 <listitem>
50 <para>
51 Download (HTTP): <ulink url="&sassc-download-http;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download (FTP): <ulink url="&sassc-download-ftp;"/>
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download MD5 sum: &sassc-md5sum;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Download size: &sassc-size;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated disk space required: &sassc-buildsize;
72 </para>
73 </listitem>
74 <listitem>
75 <para>
76 Estimated build time: &sassc-time;
77 </para>
78 </listitem>
79 </itemizedlist>
80
81 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
82 <itemizedlist spacing="compact">
83 <listitem>
84 <para>
85 Download (HTTP): <ulink url="&libsass-download-http;"/>
86 </para>
87 </listitem>
88 <listitem>
89 <para>
90 Download (FTP): <ulink url="&libsass-download-ftp;"/>
91 </para>
92 </listitem>
93 <listitem>
94 <para>
95 Download MD5 sum: &libsass-md5sum;
96 </para>
97 </listitem>
98 <listitem>
99 <para>
100 Download size: &libsass-size;
101 </para>
102 </listitem>
103 <listitem>
104 <para>
105 Estimated disk space required: &libsass-buildsize;
106 </para>
107 </listitem>
108 <listitem>
109 <para>
110 Estimated build time: &libsass-time;
111 </para>
112 </listitem>
113 </itemizedlist>
114
115 <para condition="html" role="usernotes">User Notes:
116 <ulink url="&blfs-wiki;/sassc"/>
117 </para>
118 </sect2>
119
120 <sect2 role="installation">
121 <title>Installation of sassc</title>
122
123 <para>
124 First, build the library:
125 </para>
126
127<screen><userinput>tar -xf ../libsass-&libsass-version;.tar.gz &amp;&amp;
128pushd libsass-&libsass-version; &amp;&amp;
129
130autoreconf -fi &amp;&amp;
131
132./configure --prefix=/usr --disable-static &amp;&amp;
133make</userinput></screen>
134
135 <para>
136 This package does not come with a test suite.
137 </para>
138
139 <para>
140 Now, as the <systemitem class="username">root</systemitem> user:
141 </para>
142
143<screen role="root"><userinput>make install</userinput></screen>
144
145 <para>
146 Build the command line wrapper:
147 </para>
148
149<screen><userinput>popd &amp;&amp;
150autoreconf -fi &amp;&amp;
151
152./configure --prefix=/usr &amp;&amp;
153make</userinput></screen>
154
155 <para>
156 This package does not come with a test suite.
157 </para>
158
159 <para>
160 Now, as the <systemitem class="username">root</systemitem> user:
161 </para>
162
163<screen role="root"><userinput>make install</userinput></screen>
164
165 </sect2>
166
167 <sect2 role="content">
168 <title>Contents</title>
169
170 <segmentedlist>
171 <segtitle>Installed Programs</segtitle>
172 <segtitle>Installed Libraries</segtitle>
173 <segtitle>Installed Directories</segtitle>
174
175 <seglistitem>
176 <seg>
177 sassc
178 </seg>
179 <seg>
180 libsass.so
181 </seg>
182 <seg>
183 /usr/include/sass
184 </seg>
185 </seglistitem>
186 </segmentedlist>
187
188 <variablelist>
189 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
190 <?dbfo list-presentation="list"?>
191 <?dbhtml list-presentation="table"?>
192
193 <varlistentry id="sassc-prog">
194 <term><command>sassc</command></term>
195 <listitem>
196 <para>
197 provides a command line interface to the libsass library
198 </para>
199 <indexterm zone="sassc sassc-prog">
200 <primary sortas="b-sassc">sassc</primary>
201 </indexterm>
202 </listitem>
203 </varlistentry>
204
205 </variablelist>
206
207 </sect2>
208
209</sect1>
Note: See TracBrowser for help on using the repository browser.